Skip to content

Commit

Permalink
Sync mcmb with DPS8M
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey H. Johnson <trnsz@pobox.com>
  • Loading branch information
johnsonjh committed Mar 25, 2024
1 parent b33adcd commit 6ee9543
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions utils/mcmb/mcmb.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\"
.\" mcmb.1
.\"
.\" Version: 2120.5.05-dps (libcmb 3.5.6)
.\" Version: 2120.5.06-dps (libcmb 3.5.6)
.\"
.\" -----------------------------------------------------------------------------
.\"
Expand Down Expand Up @@ -42,7 +42,7 @@
.\"
.\" --------------------------------------------------------------------------
.\"
.Dd March 10, 2024
.Dd March 25, 2024
.Dt MCMB 1
.Os
.Sh NAME
Expand Down
14 changes: 7 additions & 7 deletions utils/mcmb/mcmb.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* mcmb.c
*
* Version: 2120.5.05-dps (libcmb 3.5.6)
* Version: 2120.5.06-dps (libcmb 3.5.6)
*
* -----------------------------------------------------------------------------
*
Expand Down Expand Up @@ -306,7 +306,7 @@ struct cmb_xitem
if (suffix != NULL && !opt_quiet) \
(void)fprintf(stdout, "%s", suffix); \
(void)fprintf(stdout, \
"%s%.*Lf\r\n", \
"%s%.*Lf\n", \
opt_quiet ? "" : " = ", \
cmb_transform_precision, \
total); \
Expand Down Expand Up @@ -413,7 +413,7 @@ static struct cmb_xitem *cmb_transform_find;
if (suffix != NULL && !opt_quiet) \
(void)fprintf(stdout, "%s", suffix); \
(void)fprintf(stdout, \
"%s%.*Lf\r\n", \
"%s%.*Lf\n", \
opt_quiet ? "" : " = ", \
cmb_transform_precision, \
total); \
Expand Down Expand Up @@ -486,7 +486,7 @@ static struct cmb_xitem *cmb_transform_find;
# define CMB_PARSE_FRAGSIZE 512
#endif /* ifndef CMB_PARSE_FRAGSIZE */

static const char mcmbver[] = "2120.5.05-dps";
static const char mcmbver[] = "2120.5.06-dps";
static const char libversion[] = "libcmb 3.5.6";

/*
Expand Down Expand Up @@ -1202,7 +1202,7 @@ CMB_ACTION(cmb_print)
(void)fprintf(stdout, "%s", suffix);
}

(void)fprintf(stdout, "\r\n");
(void)fprintf(stdout, "\n");

return 0;
}
Expand Down Expand Up @@ -1789,7 +1789,7 @@ main(int argc, char *argv[])
/*NOTREACHED*/ /* unreachable */
}

(void)fprintf(stdout, "%" PRIu64 "%s", count, "\r\n");
(void)fprintf(stdout, "%" PRIu64 "%s", count, "\n");
FREE(config);
exit(EXIT_SUCCESS);
/*NOTREACHED*/ /* unreachable */
Expand Down Expand Up @@ -2030,7 +2030,7 @@ main(int argc, char *argv[])
/*NOTREACHED*/ /* unreachable */
}

(void)fprintf(stdout, "%" PRIu64 "%s", count, "\r\n");
(void)fprintf(stdout, "%" PRIu64 "%s", count, "\n");
}
else
{
Expand Down

0 comments on commit 6ee9543

Please sign in to comment.