diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2014-03-08 18:36:02 +0800 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2014-03-08 18:38:49 +0800 |
| commit | fdb3b10d0693cf33ce5a0acf17f0f323d79ee5f1 (patch) | |
| tree | 5090d475b14656a25a3c616e840d43d9173e6dd8 /tccpp.c | |
| parent | ba286136bf8e48c71ffd6c2fd9ce97e64a6eeeb1 (diff) | |
| download | tinycc-fdb3b10d0693cf33ce5a0acf17f0f323d79ee5f1.tar.gz tinycc-fdb3b10d0693cf33ce5a0acf17f0f323d79ee5f1.tar.bz2 | |
Fix various errors uncovered by static analysis
Reported-by: Carlos Montiers <cmontiers@gmail.com>
Diffstat (limited to 'tccpp.c')
| -rw-r--r-- | tccpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -276,7 +276,7 @@ ST_FUNC char *get_tok_str(int v, CValue *cv) #ifdef _WIN32 sprintf(p, "%u", (unsigned)cv->ull); #else - sprintf(p, "%Lu", cv->ull); + sprintf(p, "%llu", cv->ull); #endif break; case TOK_LCHAR: |
