libs/libc/stdio/nano_libvsprintf.c: Remove not used sign variable that was stopping the compilation

This commit is contained in:
Alan Carvalho de Assis 2019-02-07 16:48:38 -06:00 committed by Gregory Nutt
parent 713b3e3760
commit 38508e72b9

View File

@ -253,7 +253,6 @@ int lib_vsprintf(FAR struct lib_outstream_s *stream,
case 'u':
flags &= ~FL_ALT;
base = 10;
sign = 0;
goto ultoa;
case 'o':