Skip to content

Commit c93dec1

Browse files
committed
ctf: fix compilation failure with debugging turned on
It helps to put commas between your arguments. (No effect without -DDEBUG.) Signed-off-by: Nick Alcock <[email protected]>
1 parent 7000afb commit c93dec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dwarf2ctf/dwarf2ctf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ static void init_builtin(const char *builtin_objects_file,
11061106
size_t j;
11071107

11081108
for (j = 0; paths[j] != NULL; j++) {
1109-
dw_ctf_trace("noting built-in module mapping %s -> %s\n"
1109+
dw_ctf_trace("noting built-in module mapping %s -> %s\n",
11101110
module_name, paths[j]);
11111111
g_hash_table_replace(object_to_module,
11121112
strdup(paths[j]),

0 commit comments

Comments
 (0)