warning: unsuffixed floating constant [-Wunsuffixed-float-constants]
Note! Make sure sure to carefully check what I have done. I am no expert in the C language (or programming in general). If it looks wired, it probably is, and the PR should be rejected.
Reason behind my solution
C-language, or at least Gnu gcc, does not support exponents for integer constants, therefor integer constant expressions need to be changed to plain numbers (e.g. 72e6 --> 72000000).
The project builds without errors and warnings (that is the only test I can perform).
Blackmagic repo, Issue #1762
warning: unsuffixed floating constant [-Wunsuffixed-float-constants]
**Note!** Make sure sure to carefully check what I have done. I am no expert in the C language (or programming in general). If it looks wired, it probably is, and the PR should be rejected.
**Reason behind my solution**
C-language, or at least Gnu gcc, does not support exponents for integer constants, therefor integer constant expressions need to be changed to plain numbers (e.g. 72e6 --> 72000000).
The project builds without errors and warnings (that is the only test I can perform).
Blackmagic repo, Issue #1762