From a58fe4653feaa8d2bd0ab05ae9699aadf2d148e2 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Thu, 26 Dec 2013 23:58:49 -0800 Subject: [PATCH] Fix a clang warning in plPythonPack. --- Sources/Plasma/Apps/plPythonPack/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/Apps/plPythonPack/main.cpp b/Sources/Plasma/Apps/plPythonPack/main.cpp index 6cc8ae6b..eede46de 100644 --- a/Sources/Plasma/Apps/plPythonPack/main.cpp +++ b/Sources/Plasma/Apps/plPythonPack/main.cpp @@ -75,7 +75,7 @@ void WritePythonFile(const plFileName &fileName, const plFileName &path, hsStrea { hsUNIXStream pyStream, glueStream; plFileName filePath; - size_t filestart = fileName.AsString().FindLast('.'); + ssize_t filestart = fileName.AsString().FindLast('.'); if (filestart >= 0) filePath = fileName.AsString().Substr(filestart+1); else