Zach Welch <zw@superlucidity.net> fix unused return value warnings (2 of 4)

git-svn-id: svn://svn.berlios.de/openocd/trunk@1486 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
oharboe 2009-04-21 05:42:18 +00:00
parent 6f7d3c9d5b
commit 24243b2b7a
1 changed files with 4 additions and 2 deletions

View File

@ -133,7 +133,9 @@ static char buf[2048];
buf[sizeof(buf)-1] = 0;
#else
char *buf;
vasprintf( &buf, fmt, ap );
int result;
result = vasprintf( &buf, fmt, ap );
if (result < 0) exit(-1);
#endif
return buf;
}
@ -8953,7 +8955,7 @@ int Jim_EvalFile(Jim_Interp *interp, const char *filename)
const int cwd_len=2048;
char *cwd=malloc(cwd_len);
Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
getcwd( cwd, cwd_len );
if (!getcwd( cwd, cwd_len )) strcpy(cwd, "unknown");
Jim_AppendStrings(interp, Jim_GetResult(interp),
"Error loading script \"", filename, "\"",
" cwd: ", cwd,