Fixed compiler warning.

This commit is contained in:
Andrew Johnson
2008-09-26 17:00:17 +00:00
parent 8b8f2bd0ed
commit 896223e819

View File

@@ -36,7 +36,7 @@ static void testEpicsSnprintf() {
const char *svalue = "OneTwoThreeFour";
const char *format = "int %d float %8.2e string %s";
const char *expected = exbuffer;
size_t size;
int size;
int rtn, rlen;
sprintf(exbuffer, format, ivalue, fvalue, svalue);