1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Another missed fix for Embedded Library (Windows specific)

This commit is contained in:
venu@myvenu.com
2003-02-20 23:42:35 -08:00
parent b049692710
commit 7d24a79271

View File

@ -1038,11 +1038,10 @@ mysql_list_fields(MYSQL *mysql __attribute__((unused)), const char *table __attr
}
/* List all running processes (threads) in server */
#ifdef DUMMY
MYSQL_RES * STDCALL
mysql_list_processes(MYSQL *mysql)
{
#ifdef DUMMY
MYSQL_DATA *fields;
uint field_count;
uchar *pos;
@ -1063,9 +1062,9 @@ mysql_list_processes(MYSQL *mysql)
mysql->status=MYSQL_STATUS_GET_RESULT;
mysql->field_count=field_count;
DBUG_RETURN(mysql_store_result(mysql));
return (MYSQL_RES*)mysql;
}
#endif /*DUMMY*/
return 0;
}
int STDCALL