summaryrefslogtreecommitdiffstats
path: root/core/macos.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/macos.c')
-rw-r--r--core/macos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/macos.c b/core/macos.c
index 37bbd5d25..711b96a06 100644
--- a/core/macos.c
+++ b/core/macos.c
@@ -84,7 +84,7 @@ const char *system_default_filename(void)
static const char *path = NULL;
if (!path) {
const char *user = getenv("LOGNAME");
- if (same_string(user, ""))
+ if (empty_string(user))
user = "username";
char *filename = calloc(strlen(user) + 5, 1);
strcat(filename, user);