# HG changeset patch # User Markus Mützel # Date 1684664137 -7200 # Node ID 501730f07abce9e5924258297d5b1b5bf1658e21 # Parent 28ef2991fb5a42721d2bc779f53b5a6de608b0ae octave_gettimeofday_wrapper: Use NULL for pointer type argument. * liboctave/wrappers/time-wrappers.c (octave_gettimeofday_wrapper): Use NULL instead of 0 for pointer type argument. diff -r 28ef2991fb5a -r 501730f07abc liboctave/wrappers/time-wrappers.c --- a/liboctave/wrappers/time-wrappers.c Wed May 17 20:29:17 2023 -0700 +++ b/liboctave/wrappers/time-wrappers.c Sun May 21 12:15:37 2023 +0200 @@ -43,7 +43,7 @@ { struct timeval tv; - int status = gettimeofday (&tv, 0); + int status = gettimeofday (&tv, NULL); if (status < 0) {