From 8a4ff05a4040a33346a03e48a08abed8c3a74f4d Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 8 Apr 2019 12:57:56 -0700 Subject: [PATCH] nit: remove end-of-line whitespace Signed-off-by: William Casarin --- devtools/create-gossipstore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devtools/create-gossipstore.c b/devtools/create-gossipstore.c index b2a939055..ee426bc23 100644 --- a/devtools/create-gossipstore.c +++ b/devtools/create-gossipstore.c @@ -16,12 +16,12 @@ -struct scidsat * load_scid_file(FILE * scidfd) +struct scidsat * load_scid_file(FILE * scidfd) { int n; - fscanf(scidfd, "%d\n", &n); + fscanf(scidfd, "%d\n", &n); char title[16]; - fscanf(scidfd, "%s\n", title); + fscanf(scidfd, "%s\n", title); struct scidsat * scids = calloc(n, sizeof(scidsat)); int i = 0; while(fscanf(scidfd, "%s ,%ld\n", scids[i].scid, &scids[i].sat.satoshis) == 2 ) { /* Raw: read from file */