Fixed erroneous const-qualification of name param of GetAdminUsername (bug 5267, r=psychonic).

This commit is contained in:
Asher Baker 2012-05-28 00:47:55 +01:00
parent c6405bfb63
commit 4ac8430608

View File

@ -347,7 +347,7 @@ native AdminId:CreateAdmin(const String:name[]="");
* @param maxlength Maximum size of string buffer.
* @return Number of bytes written.
*/
native GetAdminUsername(AdminId:id, const String:name[], maxlength);
native GetAdminUsername(AdminId:id, String:name[], maxlength);
/**
* Binds an admin to an identity for fast lookup later on. The bind must be unique.