Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/stdlib Adjust types.



details:   https://anonhg.NetBSD.org/src/rev/ebc3b56247bd
branches:  trunk
changeset: 765860:ebc3b56247bd
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Wed Jun 08 05:31:43 2011 +0000

description:
Adjust types.

diffstat:

 tests/lib/libc/stdlib/t_strtol.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 77640e179981 -r ebc3b56247bd tests/lib/libc/stdlib/t_strtol.c
--- a/tests/lib/libc/stdlib/t_strtol.c  Wed Jun 08 05:28:03 2011 +0000
+++ b/tests/lib/libc/stdlib/t_strtol.c  Wed Jun 08 05:31:43 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_strtol.c,v 1.3 2011/06/05 13:51:46 jruoho Exp $ */
+/*     $NetBSD: t_strtol.c,v 1.4 2011/06/08 05:31:43 jruoho Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_strtol.c,v 1.3 2011/06/05 13:51:46 jruoho Exp $");
+__RCSID("$NetBSD: t_strtol.c,v 1.4 2011/06/08 05:31:43 jruoho Exp $");
 
 #include <atf-c.h>
 #include <errno.h>
@@ -40,7 +40,7 @@
 
 struct test {
        const char      *str;
-       long long int    res;
+       int64_t          res;
        int              base;
        const char      *end;
 };



Home | Main Index | Thread Index | Old Index