Changed some arrays of char* to arrays of char[] to reduce data size and

run-time relocations.
This commit is contained in:
Dan Fandrich
2008-10-22 05:46:29 +00:00
parent 4198bb88b6
commit 7fc4e8af0a
4 changed files with 6 additions and 8 deletions

View File

@@ -96,7 +96,7 @@ const char * const Curl_month[]=
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
struct tzinfo {
const char *name;
char name[5];
int offset; /* +/- in minutes */
};