Prototype was incorrect

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5382 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2019-01-14 19:43:29 +00:00
parent a82b367d8c
commit 4c2ac0cff3
2 changed files with 2 additions and 3 deletions

View File

@ -92,7 +92,6 @@
//=============================================================================
char *PR_SaveCallStack (progfuncs_t *progfuncs, char *buf, int *bufofs, int bufmax);
/*
=================
PR_PrintStatement
@ -1604,7 +1603,7 @@ static casecmprange_t casecmprange[] =
static int PR_NoDebugVM(progfuncs_t *fte_restrict progfuncs)
{
char stack[4*1024];
int ofs;
size_t ofs;
strcpy(stack, "This platform does not support QC debugging\nStack Trace:");
ofs = strlen(stack);
PR_SaveCallStack (progfuncs, stack, &ofs, sizeof(stack));

View File

@ -467,7 +467,7 @@ void PDECL PR_GenerateStatementString (pubprogfuncs_t *progfuncs, int statementn
fdef_t *PDECL ED_FieldInfo (pubprogfuncs_t *progfuncs, unsigned int *count);
char *PDECL PR_UglyValueString (pubprogfuncs_t *progfuncs, etype_t type, eval_t *val);
pbool PDECL ED_ParseEval (pubprogfuncs_t *progfuncs, eval_t *eval, int type, const char *s);
char *PR_SaveCallStack (progfuncs_t *progfuncs, char *buf, size_t *bufofs, size_t bufmax);
prclocks_t Sys_GetClockRate(void);
#endif