summaryrefslogtreecommitdiff
path: root/myisam/sp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'myisam/sp_test.c')
-rw-r--r--myisam/sp_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/myisam/sp_test.c b/myisam/sp_test.c
index b8b5880cf67..1a7c2785964 100644
--- a/myisam/sp_test.c
+++ b/myisam/sp_test.c
@@ -330,7 +330,8 @@ static void bprint_record(char * record,
i=(unsigned char)record[0];
printf("%02X ",i);
- for( pos=record+1, i=0; i<32; i++,pos++){
+ for( pos=record+1, i=0; i<32; i++,pos++)
+ {
int b=(unsigned char)*pos;
printf("%02X",b);
}