summaryrefslogtreecommitdiffstats
path: root/sprinter-sexp.c
diff options
context:
space:
mode:
authoruncrustify <david@tethera.net>2021-03-13 08:45:34 -0400
committerDavid Bremner <david@tethera.net>2021-03-13 08:45:34 -0400
commiteef21c284742fa5ae14d7d352acc3a4dc98821ce (patch)
treea4a6383a4e38d20c8072b8a2eaa499726b81e9a3 /sprinter-sexp.c
parentdf4c66f85d4aa05c462ad119c6dad3afa421f6f2 (diff)
cli: run uncrustify
This is the result of running $ uncrustify --replace --config devel/uncrustify.cfg *.c *.h in the top level source directory Line breaks were then adjusted manually to keep argc and argv together.
Diffstat (limited to 'sprinter-sexp.c')
-rw-r--r--sprinter-sexp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sprinter-sexp.c b/sprinter-sexp.c
index 35c007d5..63b25428 100644
--- a/sprinter-sexp.c
+++ b/sprinter-sexp.c
@@ -166,7 +166,7 @@ sexp_integer (struct sprinter *sp, int64_t val)
{
struct sprinter_sexp *sps = sexp_begin_value (sp);
- fprintf (sps->stream, "%"PRId64, val);
+ fprintf (sps->stream, "%" PRId64, val);
}
static void