Fixed a bug in get_panda_root

This commit is contained in:
Josh Yelon 2005-10-02 01:22:29 +00:00
parent 5f4d36e968
commit 818cf9d7a5

View File

@ -138,7 +138,7 @@ get_panda_root() {
panda_root = "c:/cygwin"; panda_root = "c:/cygwin";
} }
if (panda_root.empty() || panda_root[panda_root.length() - 1] != '\\') { if (!panda_root.empty() || panda_root[panda_root.length() - 1] != '\\') {
panda_root += '\\'; panda_root += '\\';
} }