From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <65e263b9ec88ad6c676a67ccaece92ff@proxima.alt.za> To: 9fans@9fans.net Date: Tue, 2 Apr 2013 08:54:21 +0200 From: lucio@proxima.alt.za MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] Unexpected complaint Topicbox-Message-UUID: 3c724080-ead8-11e9-9d60-3106f5b1d025 The following code triggers a warning: #include #include int main() { unsigned long long val = 0; print("VAL: %llu\n", val); return 0; } warning: llu.c:7 format mismatch llu UVLONG, arg 2 and produces the damnedest output: VAL: % %(not terminated by a newline). Something's not right, anybody know what the cause is? And maybe the cure? ++L