Skip to content

Commit

Permalink
Switched file and line by mistake
Browse files Browse the repository at this point in the history
lots of compiler warnings
  • Loading branch information
dragoncoder047 authored Apr 4, 2024
1 parent d7e640a commit 5c7c2fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinobsy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
if (!(cond)) { \
DBG("Assertion FAILED: %s", #cond); \
DBG(__VA_ARGS__); \
fprintf(stderr, "Assertion %s (in %s, line %i of %s) FAILED\n", #cond, __WHERE__, __FILE__, __LINE__); \
fprintf(stderr, "Assertion %s (in %s, line %i of %s) FAILED\n", #cond, __WHERE__, __LINE__, __FILE__); \
abort(); \
} else { \
DBG("Assertion succeeded: %s", #cond); \
Expand Down

0 comments on commit 5c7c2fa

Please sign in to comment.