diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:56:42 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:56:42 +0000 |
commit | 4ed97c9a835c5d05a900e66b997eb6e77a141950 (patch) | |
tree | 3aac1dc65931f319327cf00df82e4fe0efc7b40d /gdb/config/ns32k | |
parent | 9823e3f4c985eb5919103cc84acf2a6055ed724f (diff) | |
download | gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.zip gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.tar.gz gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.tar.bz2 |
bzero -> memset
Diffstat (limited to 'gdb/config/ns32k')
-rw-r--r-- | gdb/config/ns32k/tm-umax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/ns32k/tm-umax.h b/gdb/config/ns32k/tm-umax.h index b4e13ee..ded8252 100644 --- a/gdb/config/ns32k/tm-umax.h +++ b/gdb/config/ns32k/tm-umax.h @@ -295,7 +295,7 @@ extern CORE_ADDR ns32k_get_enter_addr (); register CORE_ADDR enter_addr; \ register CORE_ADDR next_addr; \ \ - bzero (&(frame_saved_regs), sizeof (frame_saved_regs)); \ + memset (&(frame_saved_regs), '\0', sizeof (frame_saved_regs)); \ enter_addr = ns32k_get_enter_addr ((frame_info)->pc); \ if (enter_addr > 1) \ { \ |