diff options
Diffstat (limited to 'backendC/CleanCompilerSources/backendsupport.h')
-rw-r--r-- | backendC/CleanCompilerSources/backendsupport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backendC/CleanCompilerSources/backendsupport.h b/backendC/CleanCompilerSources/backendsupport.h index ee127a0..d1cbe38 100644 --- a/backendC/CleanCompilerSources/backendsupport.h +++ b/backendC/CleanCompilerSources/backendsupport.h @@ -2,7 +2,7 @@ Clean string ============ */ -typedef struct clean_string {int length; char chars [1]; } *CleanString; +typedef struct clean_string {size_t length; char chars [1]; } *CleanString; /* Debugging |