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
It appears, that the value retrieved from dlp_exec (sd, req, &res) in dlp.c is only 32 bit, so we can use unsigned int for diriterator.
Because emum dlpVFSFileIteratorConstants are of type int, user should use casts like:
unsigned itr = (unsigned)vfsIteratorStart;
while ((emum dlpVFSFileIteratorConstants)itr != vfsIteratorStop) {
PI_ERR result = dlp_VFSDirEntryEnumerate(sd, dirRef, &itr, &maxItems, &dirItems)
[.....]
I already reported this problem erroneously on the JPilot project.
Please see juddmon/jpilot#39 for the details.
The text was updated successfully, but these errors were encountered: