diff options
| author | Marek Olšák <maraeo@gmail.com> | 2010-04-26 20:16:59 +0200 | 
|---|---|---|
| committer | Marek Olšák <maraeo@gmail.com> | 2010-04-26 20:32:38 +0200 | 
| commit | 304b9e2ccc00956d32607ab3bad0bea6fdf9f3ed (patch) | |
| tree | 5a412a56057e435a02d3d70916eaac5d7c4b2a2f /src | |
| parent | 7d164fc3594177e94df92cd1df6c8f233bd3a1ea (diff) | |
r300g: fix warnings when printing uint64_t
Though not nice, this is the correct way.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 43a42490a0..4f721ebb59 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -37,6 +37,8 @@  #include "r300_state_invariant.h"  #include "r300_winsys.h" +#include <inttypes.h> +  static void r300_destroy_context(struct pipe_context* context)  {      struct r300_context* r300 = r300_context(context); @@ -49,9 +51,9 @@ static void r300_destroy_context(struct pipe_context* context)      /* Print stats, if enabled. */      if (SCREEN_DBG_ON(r300->screen, DBG_STATS)) {          fprintf(stderr, "r300: Stats for context %p:\n", r300); -        fprintf(stderr, "    : Flushes: %llu\n", r300->flush_counter); +        fprintf(stderr, "    : Flushes: %" PRIu64 "\n", r300->flush_counter);          foreach(atom, &r300->atom_list) { -            fprintf(stderr, "    : %s: %llu emits\n", +            fprintf(stderr, "    : %s: %" PRIu64 " emits\n",                  atom->name, atom->counter);          }      } | 
