Fix typo in gdb.python/py-objfile.exp
[deliverable/binutils-gdb.git] / gdb / continuations.c
index 412a085853681bcf0fbc8098a5ca193443aa30e0..e753dc1769a51eb3f8e4298e9c3b6e8536970e4d 100644 (file)
@@ -39,13 +39,13 @@ make_continuation (struct continuation **pmy_chain,
                   continuation_ftype *function,
                   void *arg,  void (*free_arg) (void *))
 {
-  struct continuation *new = XNEW (struct continuation);
+  struct continuation *newobj = XNEW (struct continuation);
 
-  new->next = *pmy_chain;
-  new->function = function;
-  new->free_arg = free_arg;
-  new->arg = arg;
-  *pmy_chain = new;
+  newobj->next = *pmy_chain;
+  newobj->function = function;
+  newobj->free_arg = free_arg;
+  newobj->arg = arg;
+  *pmy_chain = newobj;
 }
 
 static void
This page took 0.023765 seconds and 4 git commands to generate.