fix: correct indentation in RESULT_STRUCT_TEMPLATE for clarity

This commit is contained in:
liang.he@intel.com 2025-10-29 01:50:04 +00:00
parent 39e8343152
commit be4dc9fcf9

View File

@ -52,7 +52,7 @@ RESULT_STRUCT_TEMPLATE = """
typedef struct { typedef struct {
int error_code; // Error code (0 for success, non-zero for errors) int error_code; // Error code (0 for success, non-zero for errors)
union { union {
// Add other types as needed // Add other types as needed
} value; } value;
} Result; } Result;
""" """