Skip to content

Commit 9814a18

Browse files
committed
Fix Strcat Warning
1 parent 7189093 commit 9814a18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ static void _webui_remove_firefox_profile_ini(const char* path, const char* prof
15251525
skip = true;
15261526
continue;
15271527
} else
1528-
WEBUI_STR_CAT_DYN(output, sizeof(output), buffer);
1528+
WEBUI_STR_CAT_STATIC(output, sizeof(output), buffer);
15291529
}
15301530
}
15311531

0 commit comments

Comments
 (0)