1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-15 19:04:45 +00:00

don't use the word 'template' as a variable name, since it's a reserved word in C++

This commit is contained in:
Jordan Lee 2011-11-12 00:16:04 +00:00
parent e0e47db352
commit 42997e4102

View file

@ -223,7 +223,7 @@ int tr_mkdir( const char * path, int permissions ) TR_GNUC_NONNULL(1);
int tr_mkdirp( const char * path, int permissions ) TR_GNUC_NONNULL(1); int tr_mkdirp( const char * path, int permissions ) TR_GNUC_NONNULL(1);
/** @brief Portability wrapper for mkdtemp() that uses the system implementation if available */ /** @brief Portability wrapper for mkdtemp() that uses the system implementation if available */
char* tr_mkdtemp( char * template ); char* tr_mkdtemp( char * _template );
/** /**