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
I got this compilation warning when compiling for aarch64
yuv_io.c: In function 'read_frame_header':
yuv_io.c:210:21: warning: comparison is always false due to limited range of data type [-Wtype-limits]
210 | if (buffer[i] == EOF) return 0;
| ^~
Since char is unsigned on arm, should we specify signed char in general?
The text was updated successfully, but these errors were encountered:
I got this compilation warning when compiling for aarch64
Since char is unsigned on arm, should we specify
signed char
in general?The text was updated successfully, but these errors were encountered: