summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2020-11-25 08:29:25 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2020-11-25 08:29:47 +0100
commitc70a091fa3bfbaa4e28d456a3dac7214217aa206 (patch)
tree680d3cad231b20f147f43fd2859c5d800af8d3c8
parentdf4ae812b4aa32ad6f6ae8b853b98bd761bfdaca (diff)
Match format specifier and variable type.
-rw-r--r--test/demo.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/demo.cxx b/test/demo.cxx
index d766e6518..14c86fccf 100644
--- a/test/demo.cxx
+++ b/test/demo.cxx
@@ -415,7 +415,7 @@ void dobut(Fl_Widget *, long arg) {
NULL, &suInfo, &prInfo);
if (!stat) {
DWORD err = GetLastError();
- fl_alert("Error starting process, error #%d\n'%s'", err, command);
+ fl_alert("Error starting process, error #%lu\n'%s'", err, command);
}
#elif defined __APPLE__