summaryrefslogtreecommitdiff
path: root/output/outelf64.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2009-10-30 00:23:48 +0300
committerCyrill Gorcunov <gorcunov@gmail.com>2009-10-31 20:03:14 +0300
commit54e94a56e27f73fc2831637ad9039a00eb5e6347 (patch)
tree622c223c4866cbb95797f11fa0d44c7884a31881 /output/outelf64.c
parent917117ff69271fe911e87a6f0e8dfc1f81c3f9b4 (diff)
downloadnasm-54e94a56e27f73fc2831637ad9039a00eb5e6347.tar.gz
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/outelf64.c')
-rw-r--r--output/outelf64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outelf64.c b/output/outelf64.c
index 3b9fae1d..3c424845 100644
--- a/output/outelf64.c
+++ b/output/outelf64.c
@@ -635,7 +635,7 @@ static void elf_deflabel(char *name, int32_t segment, int64_t offset,
struct tokenval tokval;
expr *e;
int fwd = 0;
- char *saveme = stdscan_get(); /* bugfix? fbk 8/10/00 */
+ char *saveme = stdscan_get();
while (special[n] && nasm_isspace(special[n]))
n++;
@@ -659,7 +659,7 @@ static void elf_deflabel(char *name, int32_t segment, int64_t offset,
else
sym->size = reloc_value(e);
}
- stdscan_set(saveme); /* bugfix? fbk 8/10/00 */
+ stdscan_set(saveme);
}
special_used = true;
}