X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.c;h=c42d8b8c727f5cd3e5ee938ccc6fc383f03c51a0;hp=294ea4ac32649b19846bc8a69f5951c5ca522278;hb=bdbf34766f4d074a5933eb1326fe4ce03d249e10;hpb=0561939cf64e5d66153c2e7903e2411b802ff5c8 diff --git a/direct.c b/direct.c index 294ea4a..c42d8b8 100644 --- a/direct.c +++ b/direct.c @@ -1,7 +1,7 @@ // // RMAC - Reboot's Macro Assembler for all Atari computers // DIRECT.C - Directive Handling -// Copyright (C) 199x Landon Dyer, 2011-2018 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2019 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -280,7 +280,7 @@ int d_print(void) while (*tok != EOL) { - switch(*tok) + switch (*tok) { case STRING: sprintf(prntstr, "%s", string[tok[1]]); @@ -312,7 +312,7 @@ int d_print(void) { strcpy(prntstr, string[tok[2]]); - switch(prntstr[0]) + switch (prntstr[0]) { case 'l': case 'L': wordlong = 1; break; case 'w': case 'W': wordlong = 0; break;