summaryrefslogtreecommitdiff
path: root/source4/lib/util/time.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-05-05 13:02:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:37 -0500
commitb56789c3491d227dd4107a37de701101c780a0f9 (patch)
tree8c7f257a426c6c8b445b2203a1a9427eac7baa91 /source4/lib/util/time.c
parent9604b161add82ed4e9039b81c59235ea678defca (diff)
downloadsamba-b56789c3491d227dd4107a37de701101c780a0f9.tar.gz
samba-b56789c3491d227dd4107a37de701101c780a0f9.tar.bz2
samba-b56789c3491d227dd4107a37de701101c780a0f9.zip
r15457: Get rid of more usages of uint_t
(This used to be commit 849818dcdeb8eaf2eb22fea3896a4f7c777d8c5f)
Diffstat (limited to 'source4/lib/util/time.c')
-rw-r--r--source4/lib/util/time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/util/time.c b/source4/lib/util/time.c
index 4897d2fa95..6ad3a229e3 100644
--- a/source4/lib/util/time.c
+++ b/source4/lib/util/time.c
@@ -139,7 +139,7 @@ _PUBLIC_ BOOL null_nttime(NTTIME t)
static uint16_t make_dos_date1(struct tm *t)
{
uint16_t ret=0;
- ret = (((uint_t)(t->tm_mon+1)) >> 3) | ((t->tm_year-80) << 1);
+ ret = (((unsigned int)(t->tm_mon+1)) >> 3) | ((t->tm_year-80) << 1);
ret = ((ret&0xFF)<<8) | (t->tm_mday | (((t->tm_mon+1) & 0x7) << 5));
return ret;
}
@@ -150,7 +150,7 @@ static uint16_t make_dos_date1(struct tm *t)
static uint16_t make_dos_time1(struct tm *t)
{
uint16_t ret=0;
- ret = ((((uint_t)t->tm_min >> 3)&0x7) | (((uint_t)t->tm_hour) << 3));
+ ret = ((((unsigned int)t->tm_min >> 3)&0x7) | (((unsigned int)t->tm_hour) << 3));
ret = ((ret&0xFF)<<8) | ((t->tm_sec/2) | ((t->tm_min & 0x7) << 5));
return ret;
}
@@ -440,7 +440,7 @@ _PUBLIC_ struct timeval timeval_add(const struct timeval *tv,
uint32_t secs, uint32_t usecs)
{
struct timeval tv2 = *tv;
- const uint_t million = 1000000;
+ const unsigned int million = 1000000;
tv2.tv_sec += secs;
tv2.tv_usec += usecs;
tv2.tv_sec += tv2.tv_usec / million;