From 210280e7a2401e33f95dcabc19b7728304241014 Mon Sep 17 00:00:00 2001 From: Matthias Kortstiege Date: Wed, 18 Jun 2014 12:00:10 +0200 Subject: [PATCH] [posixdirectory] removed misplaced ; - thanks spiff --- xbmc/filesystem/posix/PosixDirectory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/filesystem/posix/PosixDirectory.cpp b/xbmc/filesystem/posix/PosixDirectory.cpp index 3d32c2b541763..69a0cbbd2b240 100644 --- a/xbmc/filesystem/posix/PosixDirectory.cpp +++ b/xbmc/filesystem/posix/PosixDirectory.cpp @@ -121,7 +121,7 @@ bool CPosixDirectory::Create(const CURL& url) bool CPosixDirectory::Remove(const CURL& url) { - if (rmdir(url.Get().c_str()) == 0); + if (rmdir(url.Get().c_str()) == 0) return true; return !Exists(url);