You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2003/01/02 14:54:47 UTC

cvs commit: apr/test testtime.c

trawick     2003/01/02 05:54:47

  Modified:    test     testtime.c
  Log:
  fix the type of an integer constant, which with xlc will remove
  a warning and get 6 more time tests to work
  
  Revision  Changes    Path
  1.46      +1 -1      apr/test/testtime.c
  
  Index: testtime.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testtime.c,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- testtime.c	1 Jan 2003 00:01:56 -0000	1.45
  +++ testtime.c	2 Jan 2003 13:54:47 -0000	1.46
  @@ -68,7 +68,7 @@
    *           2002-08-14 12:05:36.186711 -25200 [257 Sat].
    * Which happens to be when I wrote the new tests.
    */
  -static apr_time_t now = 1032030336186711;
  +static apr_time_t now = 1032030336186711LL;
   
   static char* print_time (apr_pool_t *pool, const apr_time_exp_t *xt)
   {