mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
filesystem: add missing const to 2nd argument of stringlistappend
This commit is contained in:
@@ -156,7 +156,7 @@ void stringlistfreecontents( stringlist_t *list )
|
||||
list->strings = NULL;
|
||||
}
|
||||
|
||||
void stringlistappend( stringlist_t *list, char *text )
|
||||
void stringlistappend( stringlist_t *list, const char *text )
|
||||
{
|
||||
size_t textlen;
|
||||
|
||||
|
||||
@@ -191,7 +191,7 @@ qboolean MD5_HashFile( byte digest[16], const char *pszFileName, uint seed[4] );
|
||||
// stringlist ops
|
||||
void stringlistinit( stringlist_t *list );
|
||||
void stringlistfreecontents( stringlist_t *list );
|
||||
void stringlistappend( stringlist_t *list, char *text );
|
||||
void stringlistappend( stringlist_t *list, const char *text );
|
||||
void stringlistsort( stringlist_t *list );
|
||||
void listdirectory( stringlist_t *list, const char *path );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user