From fc2fe79fe7f12776125dd8a027cfc4906eea9fbd Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Mon, 18 May 2015 10:15:17 -0400 Subject: [PATCH] Fix regression in admin-sql-threaded when porting to transitional syntax. --- plugins/admin-sql-threaded.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/admin-sql-threaded.sp b/plugins/admin-sql-threaded.sp index 36aa3ba5..b1c0fa73 100644 --- a/plugins/admin-sql-threaded.sp +++ b/plugins/admin-sql-threaded.sp @@ -350,7 +350,7 @@ public void OnReceiveUser(Database db, DBResultSet rs, const char[] error, any d /** * Cache user info -- [0] = db id, [1] = cache id, [2] = groups */ - char[][] user_lookup = new char[num_accounts][3]; + int[][] user_lookup = new int[num_accounts][3]; int total_users = 0; while (rs.FetchRow())