This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

missing memory attributes argument


2001-01-27  Momchil Velikov  <velco@fadata.bg>

	* mi-cmd-disas.c (gdb_dis_asm_read_memory): Add missing memory
	attributes argument in the call to `xfer_memory'.

--- mi-cmd-disas.c.orig	Sat Jan 27 22:58:03 2001
+++ mi-cmd-disas.c	Fri Jan 26 21:43:48 2001
@@ -59,7 +59,7 @@
   int res;
 
   errno = 0;
-  res = xfer_memory (memaddr, myaddr, len, 0, &exec_ops);
+  res = xfer_memory (memaddr, myaddr, len, 0, 0, &exec_ops);
 
   if (res == len)
     return 0;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]