aboutsummaryrefslogtreecommitdiffstats
path: root/src/genhostid.c
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2007-09-26 15:24:29 +0000
committerBill Nottingham <notting@redhat.com>2007-09-26 15:24:29 +0000
commit6eeadb8980bf7fc0a43582cabad965cceee2049d (patch)
tree5017ee68a2cb58027bf26dde8402c421a7ae4484 /src/genhostid.c
parentc2441712081015c57aabeca637eb230055a67ba3 (diff)
downloadinitscripts-6eeadb8980bf7fc0a43582cabad965cceee2049d.tar
initscripts-6eeadb8980bf7fc0a43582cabad965cceee2049d.tar.gz
initscripts-6eeadb8980bf7fc0a43582cabad965cceee2049d.tar.bz2
initscripts-6eeadb8980bf7fc0a43582cabad965cceee2049d.tar.xz
initscripts-6eeadb8980bf7fc0a43582cabad965cceee2049d.zip
fix it for 64-bit systems (#306811)
Diffstat (limited to 'src/genhostid.c')
-rw-r--r--src/genhostid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/genhostid.c b/src/genhostid.c
index 5afb764d..da9e0db6 100644
--- a/src/genhostid.c
+++ b/src/genhostid.c
@@ -34,5 +34,5 @@ main (void)
srand48 ((long int) time (NULL) ^ (long int) getpid ());
n = lrand48 ();
}
- return sethostid (n);
+ return sethostid ((int32_t)n);
}