diff options
author | Camil Staps | 2015-08-21 14:20:24 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-21 14:20:24 +0200 |
commit | 1e73aa1a73488cc31982a5cc0fb987ebf3f0bbb9 (patch) | |
tree | 123c8029a2be92e3811a4c225ddfe6dcc4196e95 /Linux_C_12/util_121.h | |
parent | To mimic the Windows library, WinGetTime now returns the local time rather th... (diff) |
Fixed making clean strings (winGetCString and winGetCStringAndFree; clean_string struct) on 64-bit machines
Diffstat (limited to 'Linux_C_12/util_121.h')
-rw-r--r-- | Linux_C_12/util_121.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Linux_C_12/util_121.h b/Linux_C_12/util_121.h index 14091f9..84265fa 100644 --- a/Linux_C_12/util_121.h +++ b/Linux_C_12/util_121.h @@ -49,7 +49,7 @@ typedef struct } CrossCallInfo;
typedef struct clean_string
- { int length;
+ { int64_t length;
char characters[1];
} *CLEAN_STRING;
|