summaryrefslogtreecommitdiff
path: root/myisam/sp_test.c
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-10-02 13:45:16 +0300
committermonty@mashka.mysql.fi <>2002-10-02 13:45:16 +0300
commita748b35ddd91621eff30ad85f0fd2964e7cf4a68 (patch)
tree73a526696b60516603d02a92eebab2b56a800ec0 /myisam/sp_test.c
parentd69250a969449da43891ef5b2859df77917183a8 (diff)
parent1af778c05bf236177262ae5231a65d56bd92ee5c (diff)
downloadmariadb-git-a748b35ddd91621eff30ad85f0fd2964e7cf4a68.tar.gz
merge with work
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);
}