From 603ad1748baa9f5e723bd930888e2adf5a768a4c Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Fri, 10 Jun 2011 17:59:24 -0700 Subject: [PATCH] Fix printf flags. --- src/rt/rust_log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp index e2577b576bf4..6fb1853e3bc4 100644 --- a/src/rt/rust_log.cpp +++ b/src/rt/rust_log.cpp @@ -269,7 +269,7 @@ void update_log_settings(void* crate_map, char* settings) { n_dirs, &n_matches); if (n_matches < n_dirs) { - printf("warning: got %d RUST_LOG specs, enabled %d flags.", + printf("warning: got %u RUST_LOG specs, enabled %u flags.", n_dirs, n_matches); }