aboutsummaryrefslogtreecommitdiffstats
path: root/src/sleep.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2021-04-11 18:23:21 +0100
committerPádraig Brady <P@draigBrady.com>2021-04-11 18:33:45 +0100
commitef772bf97f7ec577754cbb5b278504d83cf41a43 (patch)
treeb6553bdc35b4d08368d427dbb3bb790acf43129c /src/sleep.c
parentls: cache name width determination (diff)
downloadcoreutils-ef772bf97f7ec577754cbb5b278504d83cf41a43.tar.gz
coreutils-ef772bf97f7ec577754cbb5b278504d83cf41a43.zip
maint: use "char const *" rather than "const char *"
* cfg.mk (sc_prohibit-const-char): Add a new syntax-check to enforce this style. * *.[ch]: sed -i 's/const char \*/char const */g'
Diffstat (limited to 'src/sleep.c')
-rw-r--r--src/sleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sleep.c b/src/sleep.c
index faa486c12..2d3e26bba 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -120,7 +120,7 @@ main (int argc, char **argv)
for (int i = optind; i < argc; i++)
{
double s;
- const char *p;
+ char const *p;
if (! (xstrtod (argv[i], &p, &s, cl_strtod) || errno == ERANGE)
/* Nonnegative interval. */
|| ! (0 <= s)