ianh        01/08/24 11:10:17

  Modified:    test     testmd4.c
  Log:
  fix compiler warnings
  
  Revision  Changes    Path
  1.3       +3 -3      apr-util/test/testmd4.c
  
  Index: testmd4.c
  ===================================================================
  RCS file: /home/cvs/apr-util/test/testmd4.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- testmd4.c 2001/08/01 18:16:05     1.2
  +++ testmd4.c 2001/08/24 18:10:17     1.3
  @@ -130,7 +130,7 @@
   /* Measures the time to digest TEST_BLOCK_COUNT TEST_BLOCK_LEN-byte
        blocks.
    */
  -static void MDTimeTrial()
  +static void MDTimeTrial(void)
   {
       apr_md4_ctx_t context;
       apr_time_t endTime, startTime;
  @@ -170,7 +170,7 @@
   
   /* Digests a reference suite of strings and prints the results.
    */
  -static void MDTestSuite()
  +static void MDTestSuite(void)
   {
       apr_file_printf(out, "MD4 test suite:\n");
   
  @@ -214,7 +214,7 @@
   
   /* Digests the standard input and prints the result.
    */
  -static void MDFilter()
  +static void MDFilter(void)
   {
       apr_md4_ctx_t context;
       int len = 16;
  
  
  

Reply via email to