Skip to content

Commit

Permalink
Minor help text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cpiker committed Oct 31, 2023
1 parent a2954bc commit bc12a73
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion das2/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ double das_strtod_c(const char *nptr, char **endptr){
double rVal = strtod(buf, &pEnd);

if(endptr)
*endptr = nptr + (pEnd - buf);
*endptr = ((char*) nptr) + (pEnd - buf);

return rVal;
}
Expand Down
2 changes: 1 addition & 1 deletion utilities/das2_ascii.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ void prnHelp()
" -c Clean comment and exception annotations out of the stream.\n"
"\n"
"AUTHORS:\n"
" [email protected] (2015 revised)\n"
" [email protected] (original)\n"
" [email protected] (current maintainer)\n"
"\n"
"SEE ALSO:\n"
" das2_csv, das2_binary, das2_hapi\n"
Expand Down
2 changes: 1 addition & 1 deletion utilities/das2_bin_avg.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ void prnHelp()
" units to the BIN_WIDTH units during processing.\n"
"\n"
"AUTHORS:\n"
" [email protected] (2015 revised)\n"
" [email protected] (original)\n"
" [email protected] (current maintainer)\n"
"\n"
"SEE ALSO:\n"
" das2_bin_avgsec, das2_bin_peakavgsec, das2_ascii\n"
Expand Down
2 changes: 1 addition & 1 deletion utilities/das2_bin_avgsec.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ void prnHelp()
" handled by this reducer.\n"
"\n"
"AUTHORS\n"
" [email protected] (2015 revised)\n"
" [email protected] (original)\n"
" [email protected] (revised)\n"
"\n"
"SEE ALSO\n"
" das2_bin_avg, das2_bin_peakavgsec, das2_ascii, das2_cache_rdr\n"
Expand Down
2 changes: 1 addition & 1 deletion utilities/das2_bin_peakavgsec.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ void prnHelp()
" handled by this reducer.\n"
"\n"
"AUTHORS\n"
" [email protected] (2015 revised)\n"
" [email protected] (original)\n"
" [email protected] (current maintainer)\n"
"\n"
"SEE ALSO\n"
" * das2_bin_avg, das2_bin_avgsec, das2_ascii\n"
Expand Down
2 changes: 1 addition & 1 deletion utilities/das2_from_das1.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,8 @@ void prnHelp()
" simple arrays before usage by this converter.\n"
"\n"
"AUTHORS:\n"
" [email protected] (2015 revised)\n"
" [email protected] (original)\n"
" [email protected] (current maintainer)\n"
"\n"
"SEE ALSO:\n"
" das2_ascii, das2_to_das1\n"
Expand Down

0 comments on commit bc12a73

Please sign in to comment.