Files
proxmark3/client
Rick Farina (Zero_Chaos) d522a46fca fix lto-type-mismatch in guidummy.cpp
link time optimization requires all functions named the same to actually
operate the same.  I am pretty sure this fixes it without breaking
anything.
Fixes: https://github.com/RfidResearchGroup/proxmark3/issues/2058

src/proxgui.h:35:6: error: type of ‘ShowPictureWindow’ does not match original declaration [-Werror=lto-type-mismatch]
   35 | void ShowPictureWindow(uint8_t *data, int len);
      |      ^
src/guidummy.cpp:33:17: note: type mismatch in parameter 2
   33 | extern "C" void ShowPictureWindow(char *fn) {
      |                 ^
src/guidummy.cpp:33:17: note: type ‘void’ should match type ‘int’
src/guidummy.cpp:33:17: note: ‘ShowPictureWindow’ was previously declared here
2023-07-31 15:57:09 -04:00
..
2023-07-24 03:15:14 +02:00
2023-07-15 15:26:01 +02:00
2023-05-18 00:15:55 -07:00
2023-07-31 15:57:09 -04:00
2022-01-14 21:22:26 +01:00
2023-07-17 04:49:13 +02:00
2022-01-14 21:22:26 +01:00
2023-06-02 10:45:04 +02:00