diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-10-30 00:23:48 +0300 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-10-31 20:03:14 +0300 |
commit | 54e94a56e27f73fc2831637ad9039a00eb5e6347 (patch) | |
tree | 622c223c4866cbb95797f11fa0d44c7884a31881 /output/outaout.c | |
parent | 917117ff69271fe911e87a6f0e8dfc1f81c3f9b4 (diff) | |
download | nasm-54e94a56e27f73fc2831637ad9039a00eb5e6347.tar.gz nasm-54e94a56e27f73fc2831637ad9039a00eb5e6347.tar.bz2 nasm-54e94a56e27f73fc2831637ad9039a00eb5e6347.zip |
Remove outdated comments
From Frank Kotler:
| ...
| > - stdscan_bufptr = saveme; /* bugfix? fbk 8/10/00 */
| > + stdscan_set(saveme); /* bugfix? fbk 8/10/00 */
|
| While you're at it, you could remove my comment(s - it seems to have
| reproduced). It *is* a bugfix (apparently). "saveme" might have a better
| name, too...
So get rid of the comments.
Reported-by: Frank Kotler <fbkotler@zytor.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'output/outaout.c')
-rw-r--r-- | output/outaout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outaout.c b/output/outaout.c index 113eafe..e2a9075 100644 --- a/output/outaout.c +++ b/output/outaout.c @@ -379,7 +379,7 @@ static void aout_deflabel(char *name, int32_t segment, int64_t offset, struct tokenval tokval; expr *e; int fwd = false; - char *saveme = stdscan_get(); /* bugfix? fbk 8/10/00 */ + char *saveme = stdscan_get(); if (!bsd) { nasm_error(ERR_NONFATAL, "Linux a.out does not support" @@ -409,7 +409,7 @@ static void aout_deflabel(char *name, int32_t segment, int64_t offset, sym->size = reloc_value(e); } } - stdscan_set(saveme); /* bugfix? fbk 8/10/00 */ + stdscan_set(saveme); } special_used = true; } |