Consider this code:

typedef int64_t Blkno;
#define BLKNO_FMT "%lld"
printf(BLKNO_FMT, (Blkno)some_blkno);

This works well and fine on x86. On x64, int64_t is actually a long, rather than a long long, and while long and long long are the same size on x64, the compiler generates an error:

src/cpfs/bitmap.c:14: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘Blkno’

  1. How can I tell printf that I'm passing a 64bit type?
  2. Is there some better way to standardize specs for user types than using a #define like BLKNO_FMT as above?
link|improve this question

78% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Use PRId64 from inttypes.h.

Blkno is not a very good type name. BLKNO_FMT could be replaced by PRIdBLKNO.

#include <inttypes.h>
#include <stdio.h>

typedef int64_t Blkno;
#define PRIdBLKNO PRId64

int main(void) {
  printf("%" PRIdBLKNO "\n", (Blkno)1234567890);
  return 0;
}
link|improve this answer
The (Blkno) cast is pointless if you have used the right format specifier. – user502515 Dec 10 '10 at 10:37
2  
It's not pointless, integer arguments to a variadic functions are not promoted to long long. – dreamlax Dec 10 '10 at 10:41
@user502515: Without (Blkno) the compiler produces 'warning: conversion specifies type 'long' but the argument has type 'int' [-Wformat]' – J.F. Sebastian Dec 10 '10 at 10:43
@user502515: See C99 §6.3.1.1/2 and §6.5.2.2/6 regarding integer promotions and default argument promotions. – dreamlax Dec 10 '10 at 10:48
The cast is to demonstrate that some_blkno is of type Blkno. I was not under the impression that the cast was actually necessary. If this is incorrect, please let me know!! – Matt Joiner Dec 10 '10 at 16:21
show 7 more comments
feedback

These types are not 64-bit types. They're platform-specific. The only portable way to print them is to cast to intmax_t or uintmax_t and use the correct format specifiers for to print those types.

link|improve this answer
1  
Looks like you're wrong this time @R.. :) – Matt Joiner Dec 10 '10 at 16:24
1  
Indeed, I assumed OP was working with POSIX filesystem-related types. If OP defined the type to be 64-bit then of course it's 64-bit.. :-) – R.. Dec 10 '10 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.