diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-04-20 04:52:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-04-20 04:52:25 +0000 |
commit | 87c5c1eccdd6d5591ebb51e903d53faa77be442b (patch) | |
tree | 2e564a4c9944a56cb6b2a3090265a9f5ed075642 | |
parent | eb7600593808a2710002acfe809aecf4c0c60d8f (diff) |
adjust comment
-rw-r--r-- | usr.bin/find/function.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index 7dd82b458a1..de0ba09295a 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -1,4 +1,4 @@ -/* $OpenBSD: function.c,v 1.39 2013/04/19 15:51:27 deraadt Exp $ */ +/* $OpenBSD: function.c,v 1.40 2013/04/20 04:52:24 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -144,9 +144,9 @@ find_parsenum(PLAN *plan, char *option, char *vp, char *endch) } /* - * Convert the string with strtol(). Note, if strtol() returns zero - * and endchar points to the beginning of the string we know we have - * a syntax error. + * Convert the string with strtoll(). Note, if strtoll() returns + * zero and endchar points to the beginning of the string we know + * we have a syntax error. */ value = strtoll(str, &endchar, 10); if (value == 0 && endchar == str) |