Indentation cleanup & new comments

This commit is contained in:
monty@hundin.mysql.fi 2002-06-28 09:18:23 +03:00
commit ade20c5b19
11 changed files with 216 additions and 261 deletions

View file

@ -18,12 +18,10 @@
#include "myrg_def.h"
int myrg_delete(
MYRG_INFO *info,
const byte *record)
int myrg_delete(MYRG_INFO *info, const byte *record)
{
if (!info->current_table)
return my_errno=HA_ERR_NO_ACTIVE_RECORD ;
return (my_errno= HA_ERR_NO_ACTIVE_RECORD);
return mi_delete(info->current_table->table,record);
}