You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dla wartości powyżej 32 następuje przekroczenie zakresu domyślnego typu int w mnożeniu razy tysiąc:
#define SECS(t) (unsigned long) (t * 1000)
Doraźnie pomaga wymuszene typu np.: SECS(33UL) ale to niewygodne.
Przydało by się wymuszenie typu samego argunentu:
#define SECS(t) (unsigned long) ( (unsigned long) t * 1000)
The text was updated successfully, but these errors were encountered:
mega64
changed the title
Makro SECS() error for value > 32
Macro SECS() error for value > 32
Mar 15, 2023
Dla wartości powyżej 32 następuje przekroczenie zakresu domyślnego typu int w mnożeniu razy tysiąc:
#define SECS(t) (unsigned long) (t * 1000)
Doraźnie pomaga wymuszene typu np.: SECS(33UL) ale to niewygodne.
Przydało by się wymuszenie typu samego argunentu:
#define SECS(t) (unsigned long) ( (unsigned long) t * 1000)
The text was updated successfully, but these errors were encountered: