Преглед изворни кода

Remove an "m" that did not belong.

Nick Mathewson пре 7 година
родитељ
комит
76a717890e
1 измењених фајлова са 1 додато и 1 уклоњено
  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) || ... */
 /** @} */