Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Fix clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
jorblancoa committed Oct 13, 2022
1 parent 81d24a0 commit 59f7ae7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coreneuron/io/nrn_filehandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ class FileHandler {
char line_buf[max_line_length], name[max_line_length];

F.getline(line_buf, sizeof(line_buf));
n_scan = sscanf(line_buf, "%s %d %d %zd %d", name, &nsec, &nseg, &total_lfp_factors, &num_electrodes);
n_scan = sscanf(
line_buf, "%s %d %d %zd %d", name, &nsec, &nseg, &total_lfp_factors, &num_electrodes);

nrn_assert(n_scan == 5);

Expand Down

0 comments on commit 59f7ae7

Please sign in to comment.