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

This commit is contained in:
Asher Baker 2012-05-28 00:52:59 +01:00
parent 5610aeb917
commit 0d5ef132f3

View File

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