From 683294cec902df104e9012063db1b4a8205c09d6 Mon Sep 17 00:00:00 2001 From: kai Date: Sun, 16 Jun 2013 17:57:25 +0200 Subject: [PATCH] Fix a typo in Linux code. --- driver/configfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/configfile.cpp b/driver/configfile.cpp index 51f0bc16..46764457 100644 --- a/driver/configfile.cpp +++ b/driver/configfile.cpp @@ -45,7 +45,7 @@ sys::Path GetUserHomeDirectory() { #else sys::Path GetUserHomeDirectory() { const char* home = getenv("HOME"); - Path result; + sys::Path result; if (home && result.set(home)) return result; result.set("/");