Put all declarations at top of function, as ANSI C demands

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2975 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2008-05-16 04:25:04 +00:00
parent ded11e540e
commit b2a268e2d7
+8 -8
View File
@@ -65,6 +65,14 @@ _GetConversationData (const char *path, RESOURCE_DATA *resdata)
uio_Stream *fp; uio_Stream *fp;
long dataLen; long dataLen;
void *result; void *result;
int n, path_len, num_data_sets;
DWORD opos,
slen[MAX_STRINGS], StringOffs, tot_string_size,
clen[MAX_STRINGS], ClipOffs, tot_clip_size,
tslen[MAX_STRINGS], TSOffs, tot_ts_size;
char CurrentLine[1024], clip_path[1024], *strdata, *clipdata,
*ts_data;
uio_Stream *timestamp_fp = NULL;
fp = res_OpenResFile (contentDir, path, "rb"); fp = res_OpenResFile (contentDir, path, "rb");
if (fp == NULL) if (fp == NULL)
@@ -82,14 +90,6 @@ _GetConversationData (const char *path, RESOURCE_DATA *resdata)
log_add (log_Warning, "Warning: Trying to load empty file '%s'.", path); log_add (log_Warning, "Warning: Trying to load empty file '%s'.", path);
goto err; goto err;
} }
int n, path_len, num_data_sets;
DWORD opos,
slen[MAX_STRINGS], StringOffs, tot_string_size,
clen[MAX_STRINGS], ClipOffs, tot_clip_size,
tslen[MAX_STRINGS], TSOffs, tot_ts_size;
char CurrentLine[1024], clip_path[1024], *strdata, *clipdata,
*ts_data;
uio_Stream *timestamp_fp = NULL;
if ((strdata = HMalloc (tot_string_size = POOL_SIZE)) == 0) if ((strdata = HMalloc (tot_string_size = POOL_SIZE)) == 0)
goto err; goto err;