Fix incorrect variable name in posix.c log statement (#3980)

This commit is contained in:
Sven Slootweg 2016-07-03 20:20:36 +00:00 committed by Michał Janiszewski
parent 13ecd3532c
commit b343db3948
2 changed files with 2 additions and 1 deletions

View File

@ -65,6 +65,7 @@ Includes all git commit authors. Aliases are GitHub user names.
* Josué Acevedo (Wirlie)
* Martin Černáč (octaroot)
* (marcovmun)
* Sven Slootweg (joepie91)
## Toolchain
* (Balletie) - OSX

View File

@ -724,7 +724,7 @@ void platform_resolve_openrct_data_path()
if (gCustomOpenrctDataPath[0] != 0) {
if (realpath(gCustomOpenrctDataPath, _openrctDataDirectoryPath)) {
log_error("Could not resolve path \"%s\"", gCustomUserDataPath);
log_error("Could not resolve path \"%s\"", gCustomOpenrctDataPath);
return;
}