mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 03:09:13 +00:00
Fix a clang warning in plPythonPack.
This commit is contained in:
@ -75,7 +75,7 @@ void WritePythonFile(const plFileName &fileName, const plFileName &path, hsStrea
|
|||||||
{
|
{
|
||||||
hsUNIXStream pyStream, glueStream;
|
hsUNIXStream pyStream, glueStream;
|
||||||
plFileName filePath;
|
plFileName filePath;
|
||||||
size_t filestart = fileName.AsString().FindLast('.');
|
ssize_t filestart = fileName.AsString().FindLast('.');
|
||||||
if (filestart >= 0)
|
if (filestart >= 0)
|
||||||
filePath = fileName.AsString().Substr(filestart+1);
|
filePath = fileName.AsString().Substr(filestart+1);
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user