Skip to content

Commit

Permalink
Fix typo in malc_fileline macro
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaGago committed Aug 2, 2023
1 parent af7a387 commit 8358d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/malc/log_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/*----------------------------------------------------------------------------*/
#if !defined (MALC_STRIP_LOG_FILELINE)
#define MALC_TO_STR(s) #s
#define MALC_CONCAT_FILELINE(file, line) "(" file ":" MALC_TO_STR (lin) ") "
#define MALC_CONCAT_FILELINE(file, line) "(" file ":" MALC_TO_STR (line)") "
#define malc_fileline MALC_CONCAT_FILELINE (__FILE__, __LINE__)
#else
#define malc_fileline
Expand Down

0 comments on commit 8358d81

Please sign in to comment.