Style and alignment fixes.

This commit is contained in:
AIDA Shinra
2018-06-13 21:24:34 +09:00
parent a3ab3cb458
commit 75c4972021
2 changed files with 14 additions and 14 deletions

View File

@@ -377,19 +377,19 @@ static void LabelSection (void)
/* Parse a label section */
{
static const IdentTok LabelDefs[] = {
{ "COMMENT", INFOTOK_COMMENT },
{ "ADDR", INFOTOK_ADDR },
{ "NAME", INFOTOK_NAME },
{ "SIZE", INFOTOK_SIZE },
{ "PARAMSIZE", INFOTOK_PARAMSIZE },
{ "COMMENT", INFOTOK_COMMENT },
{ "ADDR", INFOTOK_ADDR },
{ "NAME", INFOTOK_NAME },
{ "SIZE", INFOTOK_SIZE },
{ "PARAMSIZE", INFOTOK_PARAMSIZE },
};
/* Locals - initialize to avoid gcc warnings */
char* Name = 0;
char* Comment = 0;
long Value = -1;
long Size = -1;
long ParamSize = -1;
char* Name = 0;
char* Comment = 0;
long Value = -1;
long Size = -1;
long ParamSize = -1;
/* Skip the token */
InfoNextTok ();