'function' : 'format specifier' in format string conflicts with argument %d of type 'type'
There is a conflict between the format specified and the value that you are passing. For example, you passed a 32-bit pointer to %d format specifier, which can hold a 64-bit integer.