* ser-pipe.c (_initialize_ser_pipe): Correct call to memset--swap
authorIan Lance Taylor <ian@airs.com>
Tue, 13 May 2003 19:40:11 +0000 (19:40 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 13 May 2003 19:40:11 +0000 (19:40 +0000)
second and third arguments.
* ser-tcp.c (_initialize_ser_tcp): Likewise.
* ser-unix.c (_initialize_ser_hardwire): Likewise.

gdb/ChangeLog
gdb/ser-pipe.c
gdb/ser-tcp.c
gdb/ser-unix.c

index f667343f0b7935f8f01807f56d496acc9499874f..c6068d84403a0c33c472806bfeb55c4f345d04a2 100644 (file)
@@ -1,3 +1,10 @@
+2003-05-13  Ian Lance Taylor  <ian@airs.com>
+
+       * ser-pipe.c (_initialize_ser_pipe): Correct call to memset--swap
+       second and third arguments.
+       * ser-tcp.c (_initialize_ser_tcp): Likewise.
+       * ser-unix.c (_initialize_ser_hardwire): Likewise.
+
 2003-05-13  Andrew Cagney  <cagney@redhat.com>
 
        * defs.h (store_address): Delete declaration.
index bca0e54e4bab95eb834e2229f6dc1d1ac228ccd2..38f8e78949abb1341c7e24c0acd7dc68cdb242db 100644 (file)
@@ -138,7 +138,7 @@ void
 _initialize_ser_pipe (void)
 {
   struct serial_ops *ops = XMALLOC (struct serial_ops);
-  memset (ops, sizeof (struct serial_ops), 0);
+  memset (ops, 0, sizeof (struct serial_ops));
   ops->name = "pipe";
   ops->next = 0;
   ops->open = pipe_open;
index c6ae19dab02c741564a9b2406a626f3139963def..a9a87143cb37b7d8dcbde8750991033ca5893757 100644 (file)
@@ -208,7 +208,7 @@ void
 _initialize_ser_tcp (void)
 {
   struct serial_ops *ops = XMALLOC (struct serial_ops);
-  memset (ops, sizeof (struct serial_ops), 0);
+  memset (ops, 0, sizeof (struct serial_ops));
   ops->name = "tcp";
   ops->next = 0;
   ops->open = net_open;
index f7ab28ae750d3ad0cddca1e5feec6d9c430001ec..e7a5d93cef5fe8921ef293c1da8967de2156b86c 100644 (file)
@@ -1337,7 +1337,7 @@ void
 _initialize_ser_hardwire (void)
 {
   struct serial_ops *ops = XMALLOC (struct serial_ops);
-  memset (ops, sizeof (struct serial_ops), 0);
+  memset (ops, 0, sizeof (struct serial_ops));
   ops->name = "hardwire";
   ops->next = 0;
   ops->open = hardwire_open;