Skip to content

Commit

Permalink
nit: remove end-of-line whitespace
Browse files Browse the repository at this point in the history
Signed-off-by: William Casarin <[email protected]>
  • Loading branch information
jb55 authored and cdecker committed Apr 8, 2019
1 parent ede7d05 commit 8a4ff05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devtools/create-gossipstore.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 8a4ff05

Please sign in to comment.