Browse Source

Remove an "m" that did not belong.

Nick Mathewson 7 years ago
parent
commit
76a717890e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/wallclock/tm_cvt.c

+ 1 - 1
src/lib/wallclock/tm_cvt.c

@@ -145,7 +145,7 @@ tor_localtime_r_msg(const time_t *timep, struct tm *result, char **err_out)
   r = localtime(timep);
   if (r)
     memcpy(result, r, sizeof(struct tm));
-  return correct_tm(1, timep, result, rm, err_out);
+  return correct_tm(1, timep, result, r, err_out);
 }
 #endif /* defined(HAVE_LOCALTIME_R) || ... */
 /** @} */