summaryrefslogtreecommitdiff
path: root/rsc/source/rscpp/cpp4.c
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/rscpp/cpp4.c')
-rwxr-xr-x[-rw-r--r--]rsc/source/rscpp/cpp4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/rscpp/cpp4.c b/rsc/source/rscpp/cpp4.c
index 034c0123816e..03f35604a562 100644..100755
--- a/rsc/source/rscpp/cpp4.c
+++ b/rsc/source/rscpp/cpp4.c
@@ -320,7 +320,7 @@ void doundef()
*/
void textput(char* text)
{
- int size;
+ size_t size;
size = strlen(text) + 1;
if ((parmp + size) >= &parm[NPARMWORK])
@@ -531,7 +531,7 @@ FILE_LOCAL void expstuff(DEFBUF* tokenp)
int c; /* Current character */
char* inp; /* -> repl string */
char* defp; /* -> macro output buff */
- int size; /* Actual parm. size */
+ size_t size; /* Actual parm. size */
char* defend; /* -> output buff end */
int string_magic; /* String formal hack */
FILEINFO* file; /* Funny #include */