mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-12 18:40:23 +08:00
rdflib.c: add back timestamp size to header in library creation.
Commit 8dc965347 removed writing of the timestamp size to library header. (Accidentally, I guess??) The attached patch adds it back. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
parent
1969dab9c6
commit
741967033e
@ -181,6 +181,8 @@ int main(int argc, char **argv)
|
||||
nasm_write(sig_modname, strlen(sig_modname) + 1, fp);
|
||||
nasm_write(rdl_signature, strlen(rdl_signature), fp);
|
||||
t = time(NULL);
|
||||
l = sizeof(t);
|
||||
fwriteint32_t(l, fp);
|
||||
fwriteint32_t(t, fp);
|
||||
fclose(fp);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user