Skip to content

Commit

Permalink
i#2683 drrun output: fix Windows build issue (#2707)
Browse files Browse the repository at this point in the history
Fixes a Windows build issue on some CDash machines from 08cd899.

Issue: #2683
  • Loading branch information
derekbruening committed Nov 17, 2017
1 parent fd63caa commit d6e3a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/drdeploy.c
Expand Up @@ -403,9 +403,9 @@ read_tool_list(const char *dr_root, dr_platform_t dr_platform)
}

#define usage(list_ops, msg, ...) do { \
FILE *stream = (list_ops == true) ? stdout : stderr; \
if ((msg)[0] != '\0') \
fprintf(stderr, "ERROR: " msg "\n\n", ##__VA_ARGS__); \
FILE *stream = (list_ops == true) ? stdout : stderr; \
fprintf(stream, "%s", usage_str); \
print_tool_list(stream); \
if (list_ops) { \
Expand Down

0 comments on commit d6e3a60

Please sign in to comment.