Skip to content

Commit d9fd8f9

Browse files
committed
fix(app_shader): fix a compile warning
That turns into an error on nix due to a compile flag Signed-off-by: Gavin John <gavinnjohn@gmail.com>
1 parent be6f402 commit d9fd8f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

skshader_editor/app_shader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void app_shader_show_log() {
118118
for (int32_t i = 0; i < sksc_log_count(); i++) {
119119
sksc_log_item_t item = sksc_log_get(i);
120120
if (item.level > 0)
121-
ImGui::Text(item.text);
121+
ImGui::Text("%s", item.text);
122122
}
123123
ImGui::End();
124124
}

0 commit comments

Comments
 (0)