summaryrefslogtreecommitdiffstats
path: root/patches/procps-3.2.7/generic/10_w_time.dpatch
blob: c820441ef820cd6ffcaa00f610931ef887b54b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh /usr/share/dpatch/dpatch-run
## 30_w_time.dpatch by  <csmall@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Let fprintf print locale-friendly seconds #252575

@DPATCH@
diff -urNad procps-3.2.7~/w.c procps-3.2.7/w.c
--- procps-3.2.7~/w.c	2009-01-09 15:56:04.000000000 +1100
+++ procps-3.2.7/w.c	2009-01-09 16:14:56.000000000 +1100
@@ -83,7 +83,7 @@
     else if (t > 60)				/* > 1 minute */
 	fprintf(fout, " %2lu:%02u ", t/60, (unsigned) t%60);
     else
-	fprintf(fout, " %2lu.%02us", t, centi_sec);
+    fprintf(fout, " %2lu.%02us", t, centi_sec);
 }
 
 /**** stat the device file to get an idle time */