diff options
| author | Alejandro Colomar <alx@kernel.org> | 2024-06-15 20:29:33 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2024-06-15 20:44:44 +0200 |
| commit | f8fac7b28e2adb3a7a7ab7f7f28dd764f9c8ea7a (patch) | |
| tree | 67133d81bc54c1d773a2919e5d81120f770b26fb /man/man3/clock_getcpuclockid.3 | |
| parent | 6fc32a0a6ae2cedf2e954b8b48cf8ba0d5ddf2a1 (diff) | |
| download | man-pages-f8fac7b28e2adb3a7a7ab7f7f28dd764f9c8ea7a.tar.gz | |
man/: srcfix: Use \[rs] instead of \e
Scripted change:
$ find man -type f \
| xargs grep -l '\\e' \
| xargs sed -i 's/\\e/\\[rs]/g';
Link: <https://lore.kernel.org/linux-man/20240611122453.qn6jyl4go4bvwkqm@illithid/>
Suggested-by: "G. Branden Robinson" <branden@debian.org>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man/man3/clock_getcpuclockid.3')
| -rw-r--r-- | man/man3/clock_getcpuclockid.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/man3/clock_getcpuclockid.3 b/man/man3/clock_getcpuclockid.3 index 0d6e231d73..ff44067920 100644 --- a/man/man3/clock_getcpuclockid.3 +++ b/man/man3/clock_getcpuclockid.3 @@ -128,7 +128,7 @@ main(int argc, char *argv[]) struct timespec ts; \& if (argc != 2) { - fprintf(stderr, "%s <process\-ID>\en", argv[0]); + fprintf(stderr, "%s <process\-ID>\[rs]n", argv[0]); exit(EXIT_FAILURE); } \& @@ -142,7 +142,7 @@ main(int argc, char *argv[]) exit(EXIT_FAILURE); } \& - printf("CPU\-time clock for PID %s is %jd.%09ld seconds\en", + printf("CPU\-time clock for PID %s is %jd.%09ld seconds\[rs]n", argv[1], (intmax_t) ts.tv_sec, ts.tv_nsec); exit(EXIT_SUCCESS); } |
