summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-04-16 22:56:33 -0400
committerJune McEnroe <june@causal.agency>2018-04-16 22:56:33 -0400
commit14bafba31556480b2a3d8cb5157bb953c67af889 (patch)
tree155d135c273ade2f30f232f81d9036a9bba3cedd /bin
parentAlways hexadecimal in uppercase (diff)
downloadsrc-14bafba31556480b2a3d8cb5157bb953c67af889.tar.gz
src-14bafba31556480b2a3d8cb5157bb953c67af889.zip
Format gfxx options with uppercase hexadecimal
Missed this one because of the #. Whose behaviour is dumb, by the way.
%#X prefixes with "0X", which no one should ever have to look at.
Diffstat (limited to 'bin')
-rw-r--r--bin/gfxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 8a43fd2f..1d6f57cb 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -158,7 +158,7 @@ static char options[128];
 static void formatOptions(void) {
     snprintf(
         options, sizeof(options),
-        "gfxx -c %s -e%c -E%c -b %hhu%hhu%hhu%hhu -n %#zx %s%s-w %zu -z %zu",
+        "gfxx -c %s -e%c -E%c -b %hhu%hhu%hhu%hhu -n 0x%zX %s%s-w %zu -z %zu",
         COLOR__STR[space],
         "lb"[byteOrder],
         "lb"[bitOrder],
=2.0&id=2f39eabb2ddc945217a92247724e65f4eb485656&follow=1'>Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe 2019-11-08Only change AWAY status for registered clientsJune McEnroe 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe