Procházet zdrojové kódy

Fix a warning on 32-bit clang

Nick Mathewson před 6 roky
rodič
revize
a3685ba0c5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/or/hs_common.c

+ 1 - 1
src/or/hs_common.c

@@ -245,7 +245,7 @@ hs_get_start_time_of_next_time_period(time_t now)
 
   /* Apply rotation offset as specified by prop224 section [TIME-PERIODS] */
   unsigned int time_period_rotation_offset = sr_state_get_phase_duration();
-  return start_of_next_tp_in_mins * 60 + time_period_rotation_offset;
+  return (time_t)(start_of_next_tp_in_mins * 60 + time_period_rotation_offset);
 }
 
 /* Create a new rend_data_t for a specific given <b>version</b>.