1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00

Small fix for debug info output.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4947 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-01-28 16:20:39 +00:00
parent 8af53cf22a
commit 81c90667bf

View File

@ -78,13 +78,10 @@ void PrintDbgInfo (ObjData* O, FILE* F)
/* Print it */
fprintf (F,
"line\tfile=%u,line=%lu,segment=%u,range=0x%06lX-0x%06lX",
"line\tfile=%u,line=%lu,segment=%u,range=0x%06lX-0x%06lX\n",
LI->File->Id, GetSourceLine (LI), R->Seg->Id,
R->Offs, R->Offs + R->Size - 1);
}
/* Terminate the line */
fprintf (F, "\n");
}
}