Skip to content

notifier: workaround for sscanf format mismatch

Created by: ceggers-arri

ino_t is either 'unsigned long' or 'unsigned long long' (depending on the platform and the C library version). As the C library doesn't provide a printf/scanf 'conversion specifier' for ino_t, we shouldn't pass a pointer of this type to sscanf.

Merge request reports