From: James Turner Date: Sun, 15 Dec 2013 20:55:02 +0000 (+0000) Subject: Fix a typo breaking Mac build. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1ecccd43d484ca08669f4a8a065028fb3f3cd134;p=simgear.git Fix a typo breaking Mac build. --- diff --git a/simgear/misc/sg_path.cxx b/simgear/misc/sg_path.cxx index 36b7506d..e0572e19 100644 --- a/simgear/misc/sg_path.cxx +++ b/simgear/misc/sg_path.cxx @@ -677,7 +677,7 @@ SGPath SGPath::desktop(const SGPath& def) unsigned char path[1024]; if (FSRefMakePath(&ref, path, 1024) != noErr) - return def + return def; return SGPath((const char*) path, def._permission_checker); }