summaryrefslogtreecommitdiff
path: root/source3/printing
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-01-11 23:33:12 +0000
committerJeremy Allison <jra@samba.org>2002-01-11 23:33:12 +0000
commit1d40138232a22b78f088847d0d72d6ddec17a65e (patch)
tree2512a77f1e2a7e7c3f937552d08bf81e3d002861 /source3/printing
parentb741f6b04c2b0da7963cf0778f20a8ad1e8dbf9e (diff)
downloadsamba-1d40138232a22b78f088847d0d72d6ddec17a65e.tar.gz
samba-1d40138232a22b78f088847d0d72d6ddec17a65e.tar.bz2
samba-1d40138232a22b78f088847d0d72d6ddec17a65e.zip
Round and round we go....
Jeremy. (This used to be commit 2603ab3c6870f3697751b887e940910713f08985)
Diffstat (limited to 'source3/printing')
-rw-r--r--source3/printing/nt_printing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c
index 608ba9f21f..0f02266c0f 100644
--- a/source3/printing/nt_printing.c
+++ b/source3/printing/nt_printing.c
@@ -2655,7 +2655,7 @@ static uint32 rev_changeid(void)
get_process_uptime(&tv);
/* This value is in ms * 100 */
- return (tv.tv_sec * 100000) + (tv.tv_usec / 10);
+ return (((tv.tv_sec * 1000000) + tv.tv_usec)/100);
}
/*