Skip to content

Commit

Permalink
print extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Dec 11, 2023
1 parent 0d6037b commit 10b2d61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/kernel/tab/tabspline.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ string defv[] = {
"type=cspline\n Spline interpolation type (only for GSL)",
#endif
"nder=0\n Number of derivates to show (0,1,2)",
"VERSION=3.4\n 9-aug-2022 PJT",
"VERSION=3.4a\n 10-dec-2023 PJT",
NULL,

};
Expand Down Expand Up @@ -92,8 +92,8 @@ void nemo_main()
Qx = hasvalue("x");
Qy = hasvalue("y");
fmt = getparam("format");
sprintf(fmt2,"%s %s",fmt,fmt);
sprintf(fmt1,"%s %s",fmt,fmt);
sprintf(fmt2,"%s %s ",fmt,fmt);
sprintf(fmt1,"%s %s ",fmt,fmt);
dprintf(1,"Using format=\"%s\"\n",fmt2);
Qxall = (Qx && streq("all",getparam("x")));
Qyall = (Qy && streq("all",getparam("y")));
Expand Down

0 comments on commit 10b2d61

Please sign in to comment.