mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-12 07:54:46 +00:00
Fix some Premake warnings
This was SVN commit r7755.
This commit is contained in:
@@ -240,7 +240,7 @@ const char* path_getname(const char* path)
|
||||
path_translateInPlace(forpart, "posix");
|
||||
|
||||
ptr = strrchr(forpart, '/');
|
||||
ptr = (ptr != NULL) ? ++ptr : forpart;
|
||||
ptr = (ptr != NULL) ? ptr+1 : forpart;
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
||||
@@ -173,7 +173,7 @@ static void tag_attr_open(const char* name)
|
||||
io_print("=\"");
|
||||
}
|
||||
|
||||
static tag_attr_close()
|
||||
static void tag_attr_close()
|
||||
{
|
||||
io_print("\"");
|
||||
attrib++;
|
||||
|
||||
Reference in New Issue
Block a user