- cleaned up makefiles
- polished code to avoid warnings
This commit is contained in:
@ -194,7 +194,7 @@
|
||||
case '\015': *pntr++ = '\\'; *pntr++ = 'r'; break;
|
||||
default:
|
||||
if ((in < ' ') || (in > '~')) {
|
||||
pntr += sprintf (pntr, "\\%03.3o", in);
|
||||
pntr += sprintf (pntr, "\\%3.3o", in);
|
||||
}else {
|
||||
*pntr++ = in;
|
||||
}
|
||||
|
Reference in New Issue
Block a user