mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
switch dbg arg ordering to make it backwards compatible
This commit is contained in:
parent
6c60da2832
commit
787d7f85ac
50 changed files with 54 additions and 53 deletions
|
@ -24,7 +24,7 @@ void roc_panic(void* ptr, unsigned int alignment) {
|
|||
exit(1);
|
||||
}
|
||||
|
||||
void roc_dbg(char* loc, char* src, char* msg) {
|
||||
void roc_dbg(char* loc, char* msg, char* src) {
|
||||
fprintf(stderr, "[%s] %s = %s\n", loc, src, msg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue