move FAR item to own line

This commit is contained in:
Kenneth J Davis 2024-02-11 08:59:32 -05:00
parent a593799eb0
commit edd0732433
No known key found for this signature in database
GPG Key ID: 59D5F216C38F11FD
1 changed files with 2 additions and 1 deletions

View File

@ -269,7 +269,8 @@ STATIC void do_printf(CONST BYTE * fmt, va_list arg)
{ {
int base, size; int base, size;
BYTE s[13]; /* long enough for a 32-bit octal number string with sign */ BYTE s[13]; /* long enough for a 32-bit octal number string with sign */
BYTE flags, FAR *p; BYTE flags;
BYTE FAR *p;
for (;*fmt != '\0'; fmt++) for (;*fmt != '\0'; fmt++)
{ {