Skip to content

Commit

Permalink
Keep bad align
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cornu committed Sep 17, 2024
1 parent 434ade7 commit bfe9e18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ivoc/matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static double m_spgetrowval(void* v) {
static double m_printf(void* v) {
Matrix* m = (Matrix*) v;
int i, j, nrow = m->nrow(), ncol = m->ncol();
const char* f1 = " %-8.3g";
const char* f1 = " {:<-8.3g}";
const char* f2 = "\n";
if (ifarg(1)) {
f1 = gargstr(1);
Expand Down
2 changes: 1 addition & 1 deletion src/nrnoc/solve.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ static void dashes(Section* sec, int offset, int first) {
Sprintf(direc, "(%d-%d)", i, 1 - i);
for (i = 0; i < offset; i++)
logger.print(" ");
logger.print("{}", first);
logger.print("{:c}", first);
for (i = 2; i < sec->nnode; i++)
logger.print("-");
if (sec->prop->dparam[4].get<double>() == 1) {
Expand Down

0 comments on commit bfe9e18

Please sign in to comment.