summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2008-12-14 10:18:16 +0000
committerrillig <rillig>2008-12-14 10:18:16 +0000
commit6eb6d1ef3cedcd6f868aece161688972e39c7b92 (patch)
treec4ac8cc721c4d8388915d35ea776fa45e416d581 /pkgtools
parent0ab487bc5ebde781336d0e70b3805e14420869f4 (diff)
downloadpkgsrc-6eb6d1ef3cedcd6f868aece161688972e39c7b92.tar.gz
An int is not guaranteed to be 64bit and in fact isn't on most
platforms.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/lib/dewey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/lib/dewey.c b/pkgtools/pkg_install/files/lib/dewey.c
index a6ece428ea2..a133b414535 100644
--- a/pkgtools/pkg_install/files/lib/dewey.c
+++ b/pkgtools/pkg_install/files/lib/dewey.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dewey.c,v 1.8 2007/09/27 13:30:28 joerg Exp $ */
+/* $NetBSD: dewey.c,v 1.9 2008/12/14 10:18:16 rillig Exp $ */
/*
* Copyright © 2002 Alistair G. Crooks. All rights reserved.
@@ -173,7 +173,7 @@ mkcomponent(arr_t *ap, const char *num)
return 1;
}
-/* make a version number string into an array of comparable 64bit ints */
+/* make a version number string into an array of comparable ints */
static int
mkversion(arr_t *ap, const char *num)
{