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

tests/src: Align teminating backslash


Align terminating backslash in `FAIL()` macro.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent 9124ce19
No related branches found
No related tags found
No related merge requests found
......@@ -9,12 +9,12 @@
#include "osmem.h"
#include "helpers.h"
#define FAIL(assertion, feedback) \
do { \
if (assertion) { \
#define FAIL(assertion, feedback) \
do { \
if (assertion) { \
fprintf(stderr, "(%s, %d): %s", __FILE__, __LINE__, feedback); \
exit(SIGABRT); \
} \
exit(SIGABRT); \
} \
} while (0)
#define METADATA_SIZE (sizeof(struct block_meta))
......
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