Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/config/posix/ush_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ extern "C" {
#define USH_CONFIG_TRANSLATION_FILE_NOT_FOUND "file not found"
#define USH_CONFIG_TRANSLATION_READ_ONLY_FILE "read only file"

#define USH_ASSERT(cond) { if (!(cond)) { fprintf(stderr, "ASSERT: %s:%d\n", __FILE__, __LINE__); exit(-1); } }
#define USH_ASSERT(cond) { if (!(cond)) { fprintf(stderr, "ASSERT: %s:%d: %s\n", __FILE__, __LINE__, #cond); exit(-1); } }

#ifdef __cplusplus
}
Expand Down