From 98fe9e1e7ad7ac01092bb258d52f502cf9d9e7c9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 Dec 2013 01:35:18 +0100 Subject: [PATCH] (QNX) Ambiguous call to strlcpy (make it nall::strlcpy instead). Fucks up with Blackberry toolchain --- snes/system/serialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snes/system/serialization.cpp b/snes/system/serialization.cpp index 158197d..4cd133b 100755 --- a/snes/system/serialization.cpp +++ b/snes/system/serialization.cpp @@ -7,7 +7,7 @@ serializer System::serialize() { char description[512], profile[16]; memset(&description, 0, sizeof description); memset(&profile, 0, sizeof profile); - strlcpy(profile, Info::Profile, sizeof profile); + nall::strlcpy(profile, Info::Profile, sizeof profile); s.integer(signature); s.integer(version);