diff options
author | unknown <jani@ua141d10.elisa.omakaista.fi> | 2006-05-23 18:27:54 +0300 |
---|---|---|
committer | unknown <jani@ua141d10.elisa.omakaista.fi> | 2006-05-23 18:27:54 +0300 |
commit | 7d01d11c8dc387645d68395d3f1659f2f8b2597b (patch) | |
tree | 9e1bff8ca2239c91bcfb477d4543523dd7a55392 /include/heap.h | |
parent | 2b8527e94507acd10ff48fee4fe1b8814d246dea (diff) | |
download | mariadb-git-7d01d11c8dc387645d68395d3f1659f2f8b2597b.tar.gz |
Removed wrong ascii codes from source code.
Fixed core dump in --help
include/heap.h:
Removed a wrong character (ascii 0xa0), which looked like a space.
This will cause some debuggers display the source code in a wrong
way. May cut the rest of the file off and looks like a debugger
problem, which it isn't.
mysys/my_getopt.c:
Removed a wrong character (ascii 0xa0), which looked like a space.
This will cause some debuggers display the source code in a wrong
way. May cut the rest of the file off and looks like a debugger
problem, which it isn't.
sql/mysqld.cc:
Wrong type.
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/heap.h b/include/heap.h index 855cff117e2..4c003462a45 100644 --- a/include/heap.h +++ b/include/heap.h @@ -111,7 +111,7 @@ struct st_heap_info; /* For referense */ typedef struct st_hp_keydef /* Key definition with open */ { - uint flag; /* HA_NOSAME | HA_NULL_PART_KEY */ + uint flag; /* HA_NOSAME | HA_NULL_PART_KEY */ uint keysegs; /* Number of key-segment */ uint length; /* Length of key (automatic) */ uint8 algorithm; /* HASH / BTREE */ |