+2014-02-20 Joel Brobecker <brobecker@adacore.com>
+
+ * dec-thread.c (dec_thread_get_ada_task_ptid): Avoid unescaped
+ new-line in debug string. Remove trailing spaces.
+
2014-02-19 Stan Shebs <stan@codesourcery.com>
* darwin-nat.c (darwin_xfer_partial): Fix return type.
int i;
struct dec_thread_info *info;
- debug ("dec_thread_get_ada_task_ptid (struct target_ops *self,
- lwp=0x%lx, thread=0x%lx)",
+ debug ("dec_thread_get_ada_task_ptid (struct target_ops *self,"
+ " lwp=0x%lx, thread=0x%lx)",
lwp, thread);
for (i = 0; VEC_iterate (dec_thread_info_s, dec_thread_list, i, info);
i++)
if (info->info.teb == (pthread_t) thread)
return ptid_build_from_info (*info);
-
+
warning (_("Could not find thread id from THREAD = 0x%lx"), thread);
return inferior_ptid;
}