Skip to content

Commit

Permalink
[posixdirectory] removed misplaced ; - thanks spiff
Browse files Browse the repository at this point in the history
  • Loading branch information
mkortstiege committed Jun 18, 2014
1 parent df1a882 commit 210280e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/posix/PosixDirectory.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 210280e

Please sign in to comment.