diff options
author | monty@mashka.mysql.fi <> | 2002-10-02 13:45:16 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-10-02 13:45:16 +0300 |
commit | a748b35ddd91621eff30ad85f0fd2964e7cf4a68 (patch) | |
tree | 73a526696b60516603d02a92eebab2b56a800ec0 /myisam/sp_test.c | |
parent | d69250a969449da43891ef5b2859df77917183a8 (diff) | |
parent | 1af778c05bf236177262ae5231a65d56bd92ee5c (diff) | |
download | mariadb-git-a748b35ddd91621eff30ad85f0fd2964e7cf4a68.tar.gz |
merge with work
Diffstat (limited to 'myisam/sp_test.c')
-rw-r--r-- | myisam/sp_test.c | 3 |
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); } |