19 lines
638 B
Diff
19 lines
638 B
Diff
--- a/libasm/asm_align.c 2020-06-16 12:14:03.978543386 +0000
|
|
+++ b/libasm/asm_align.c 2020-06-16 12:14:28.744701476 +0000
|
|
@@ -60,13 +60,13 @@ asm_align (AsmScn_t *asmscn, GElf_Word v
|
|
fprintf (asmscn->ctx->out.file, "%02hhx\n", asmscn->pattern->bytes[0]);
|
|
else
|
|
{
|
|
- fputc_unlocked ('"', asmscn->ctx->out.file);
|
|
+ fputc ('"', asmscn->ctx->out.file);
|
|
|
|
for (size_t cnt = 0; cnt < asmscn->pattern->len; ++cnt)
|
|
fprintf (asmscn->ctx->out.file, "\\x%02hhx",
|
|
asmscn->pattern->bytes[cnt]);
|
|
|
|
- fputs_unlocked ("\"\n", asmscn->ctx->out.file);
|
|
+ fputs ("\"\n", asmscn->ctx->out.file);
|
|
}
|
|
return 0;
|
|
}
|