linux-mips-low.c: Change "private" variable name
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-mips-low.c
index 2cfa7c295aaad765d3345abf88d51b44641c88c4..05255221f1be3762a880b6fbcdfb02b598ce0e81 100644 (file)
@@ -356,7 +356,7 @@ mips_linux_new_thread (struct lwp_info *lwp)
 /* Create a new mips_watchpoint and add it to the list.  */
 
 static void
-mips_add_watchpoint (struct arch_process_info *private, CORE_ADDR addr, int len,
+mips_add_watchpoint (struct arch_process_info *priv, CORE_ADDR addr, int len,
                     enum target_hw_bp_type watch_type)
 {
   struct mips_watchpoint *new_watch;
@@ -368,7 +368,7 @@ mips_add_watchpoint (struct arch_process_info *private, CORE_ADDR addr, int len,
   new_watch->type = watch_type;
   new_watch->next = NULL;
 
-  pw = &private->current_watches;
+  pw = &priv->current_watches;
   while (*pw != NULL)
     pw = &(*pw)->next;
   *pw = new_watch;
This page took 0.023348 seconds and 4 git commands to generate.