diff options
Diffstat (limited to 'rts/RtsFlags.c')
-rw-r--r-- | rts/RtsFlags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c index 4d40810bc6..911cf32969 100644 --- a/rts/RtsFlags.c +++ b/rts/RtsFlags.c @@ -535,7 +535,7 @@ char** getUTF8Args(int* argc) // We create two argument arrays, one which is later permutated by the RTS // instead of the main argv. - // The other one is used to free the allocted memory later. + // The other one is used to free the allocated memory later. char** argv = (char**) stgMallocBytes(sizeof(char*) * (*argc + 1), "getUTF8Args 1"); win32_full_utf8_argv = (char**) stgMallocBytes(sizeof(char*) * (*argc + 1), |