Skip to content

Commit

Permalink
Fix format string warning.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129467 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
d0k committed Apr 13, 2011
1 parent 1335022 commit 8b50573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/libprofile/LineProfiling.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void llvm_prof_linectr_start_file(const char *orig_filename) {
void llvm_prof_linectr_emit_counter(const char *dir, const char *file,
uint32_t line, uint32_t column,
uint64_t *counter) {
printf("%s/%s:%u:%u %ull\n", dir, file, line, column,
printf("%s/%s:%u:%u %llu\n", dir, file, line, column,
(unsigned long long)(*counter));
}

Expand Down

0 comments on commit 8b50573

Please sign in to comment.