diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-04-24 15:29:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 15:29:05 -0400 |
commit | 338abde356efcae6cf0a000b71b781d21c8733b6 (patch) | |
tree | b275d303c93662ea4879fdca4597aa21e1c9421c /lib/mime.c | |
parent | d78903961ee95376bccde7c1313be5b583911ab7 (diff) | |
parent | 24992f1f426111f0ce05df341087a55486ae48db (diff) | |
download | spmc-338abde356efcae6cf0a000b71b781d21c8733b6.tar.gz |
Merge pull request #30 from jhunkeler/shlib-macos
Shlib macos
Diffstat (limited to 'lib/mime.c')
-rw-r--r-- | lib/mime.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ Process *file_command(const char *_filename) { Process *proc_info = NULL; char sh_cmd[PATH_MAX]; sh_cmd[0] = '\0'; -#ifdef __APPLE__ +#if OS_DARWIN const char *fmt_cmd = "file -I \"%s\" 2>&1"; #else // GNU const char *fmt_cmd = "file -i \"%s\" 2>&1"; |