Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 44543 invoked by uid 500); 24 Jul 2002 23:35:44 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 44497 invoked from network); 24 Jul 2002 23:35:43 -0000 X-Authentication-Warning: cancer.clove.org: jerenk set sender to jerenkrantz@apache.org using -f Date: Wed, 24 Jul 2002 16:35:51 -0700 From: Justin Erenkrantz To: dev@apr.apache.org Subject: Re: cvs commit: apr/include apr_strings.h Message-ID: <20020724233550.GL24211@apache.org> Mail-Followup-To: Justin Erenkrantz , dev@apr.apache.org References: <20020724233157.28672.qmail@icarus.apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020724233157.28672.qmail@icarus.apache.org> User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Wed, Jul 24, 2002 at 11:31:57PM -0000, wsanchez@apache.org wrote: > @@ -233,17 +233,17 @@ > } > #endif > > -APR_DECLARE(long long) apr_strtoll(const char *buf, char **end, int base) > +APR_DECLARE(apr_int64_t) apr_strtoll(const char *buf, char **end, int base) > { > #if (APR_HAVE_STRTOLL) > - return strtoll(buf, end, base); > + return (apr_int64_t)strtoll(buf, end, base); Do we really need a cast here? -- justin