Skip to content
Snippets Groups Projects
Commit 90cc8679 authored by Razvan Deaconescu's avatar Razvan Deaconescu
Browse files

src: Align teminating backslash


Align terminating backslash in `DIE()` macro.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent 2afd35ac
No related branches found
No related tags found
No related merge requests found
......@@ -12,12 +12,12 @@
#include <unistd.h>
#define DIE(assertion, call_description) \
do { \
if (assertion) { \
fprintf(stderr, "(%s, %d): ", __FILE__, __LINE__); \
perror(call_description); \
exit(errno); \
} \
do { \
if (assertion) { \
fprintf(stderr, "(%s, %d): ", __FILE__, __LINE__); \
perror(call_description); \
exit(errno); \
} \
} while (0)
/* Structure to hold memory block metadata */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment