summaryrefslogtreecommitdiff
path: root/paths.c
diff options
context:
space:
mode:
Diffstat (limited to 'paths.c')
-rw-r--r--paths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/paths.c b/paths.c
index 6f1cd5b..49a3c5c 100644
--- a/paths.c
+++ b/paths.c
@@ -108,7 +108,7 @@ char *path_append(const char *base, const char *suffix)
#ifdef _WIN32
//handle transition from root of a drive to virtual root
if (base[1] == ':' && !base[2]) {
- return strdup(PATH_SEP)
+ return strdup(PATH_SEP);
}
#endif
size_t len = strlen(base);