Skip to content

Commit 2e53e19

Browse files
committed
export: Return pointer as NULL instead of false
1 parent c3cc477 commit 2e53e19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/export.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ create_implicit_dir(const char *prefix)
237237
log_msg(LOG_LEVEL_ERROR,
238238
MOD_NAME "Directory creation failed: %s\n",
239239
ug_strerror(errno));
240-
return false;
240+
return NULL;
241241
}
242242
return strdup(name);
243243
}

0 commit comments

Comments
 (0)