~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/stacktrace.cc

  • Committer: Brian Aker
  • Date: 2008-12-01 03:06:56 UTC
  • mfrom: (632.1.9 devel)
  • Revision ID: brian@tangent.org-20081201030656-u1lp02eer6oyxjac
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
      fp < (unsigned char**) stack_bottom - thread_stack)
157
157
  {
158
158
    fprintf(stderr, "Bogus stack limit or frame pointer,\
159
 
 fp=%p, stack_bottom=%p, thread_stack=%ld, aborting backtrace.\n",
160
 
            (void *)fp, (void *)stack_bottom, thread_stack);
 
159
 fp=%p, stack_bottom=%p, thread_stack=%"PRIu64", aborting backtrace.\n",
 
160
            (void *)fp, (void *)stack_bottom, (uint64_t)thread_stack);
161
161
    return;
162
162
  }
163
163