Skip to content

Commit 22afb04

Browse files
fix stderr calls
1 parent d42e481 commit 22afb04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RGFW.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2645,7 +2645,7 @@ RGFW_window* RGFW_createWindow(const char* name, RGFW_rect rect, RGFW_windowArgs
26452645

26462646
if (fbcount == 0) {
26472647
#ifdef RGFW_DEBUG
2648-
fprintf("Failed to find any valid GLX visual configs\n");
2648+
fprintf(stderr, "Failed to find any valid GLX visual configs\n");
26492649
#endif
26502650
return NULL;
26512651
}
@@ -2670,7 +2670,7 @@ RGFW_window* RGFW_createWindow(const char* name, RGFW_rect rect, RGFW_windowArgs
26702670

26712671
if (best_fbc == -1) {
26722672
#ifdef RGFW_DEBUG
2673-
fprintf("Failed to get a valid GLX visual\n");
2673+
fprintf(stderr, "Failed to get a valid GLX visual\n");
26742674
#endif
26752675
return NULL;
26762676
}

0 commit comments

Comments
 (0)