From 14f0250a89e96f161865acf0a2c1c92dbb96d69c Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Fri, 9 Nov 2012 10:28:29 +1100 Subject: [PATCH] Remove extra ";" Signed-off-by: Angus Salkeld --- lib/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unix.c b/lib/unix.c index 800fcf8e1..457ebcbe8 100644 --- a/lib/unix.c +++ b/lib/unix.c @@ -75,7 +75,7 @@ qb_sys_mmap_file_open(char *path, const char *file, size_t bytes, int32_t res = 0; ssize_t written; char *buffer = NULL; - char *is_absolute = strchr(file, '/');; + char *is_absolute = strchr(file, '/'); if (is_absolute) { (void)strlcpy(path, file, PATH_MAX);