code cleanup: use ptrdiff_t when comparing pointers and tag event as an unused arg to move_to_layer_invoke()

This commit is contained in:
2012-11-13 15:46:55 +00:00
parent f9428065b8
commit f579aea076
2 changed files with 2 additions and 2 deletions

View File

@@ -881,7 +881,7 @@ void IMB_exr_close(void *handle)
/* get a substring from the end of the name, separated by '.' */
static int imb_exr_split_token(const char *str, const char *end, const char **token)
{
int64_t maxlen = end - str;
ptrdiff_t maxlen = end - str;
int len = 0;
while (len < maxlen && *(end - len - 1) != '.') {
len++;