diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-09 15:40:40 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-09 15:40:40 +0100 |
commit | 0839961de3373553b104f069652df021cf54aebd (patch) | |
tree | b4b19a384604f7c3a03e2b8e27de651468400e63 /csim/load.c | |
parent | 5393f647967d4a4ad2aa4df732a13e2e1b6cf8d2 (diff) | |
download | SystDigit-Projet-0839961de3373553b104f069652df021cf54aebd.tar.gz SystDigit-Projet-0839961de3373553b104f069652df021cf54aebd.zip |
Minor style changes.
Diffstat (limited to 'csim/load.c')
-rw-r--r-- | csim/load.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csim/load.c b/csim/load.c index f652d78..eb441cc 100644 --- a/csim/load.c +++ b/csim/load.c @@ -111,7 +111,8 @@ t_program *load_dumb_netlist (FILE *stream) { &(p->eqs[i].Slice.source)); break; case C_SELECT: - fscanf(stream, "%d %d ", &(p->eqs[i].Select.i), + fscanf(stream, "%d %d ", + &(p->eqs[i].Select.i), &(p->eqs[i].Select.source)); break; } |