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
Due to changes in libplist's plist.h, plist_new_data now takes a first parameter which is unsigned char *, where it used to be signed char *. A build with gcc 13.2.0 in the mingw environment is defined to treat all warnings as errors, so the build breaks. Editing ideviceinstaller.c line 1211 to declare zbuf to be unsigned char * restores the build.
The text was updated successfully, but these errors were encountered:
Due to changes in libplist's plist.h, plist_new_data now takes a first parameter which is unsigned char *, where it used to be signed char *. A build with gcc 13.2.0 in the mingw environment is defined to treat all warnings as errors, so the build breaks. Editing ideviceinstaller.c line 1211 to declare zbuf to be unsigned char * restores the build.
The text was updated successfully, but these errors were encountered: