1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-04-21 18:03:02 -04:00

Merge pull request #929 from omar-polo/fmt

Use proper printf directive for uint64_t
This commit is contained in:
Yuxuan Shui 2022-11-18 14:30:32 +00:00 committed by GitHub
commit ec02fc619c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -539,8 +539,8 @@ static bool initialize_backend(session_t *ps) {
} else {
shader->attributes = 0;
}
log_debug("Shader %s has attributes %ld", shader->key,
shader->attributes);
log_debug("Shader %s has attributes %" PRIu64,
shader->key, shader->attributes);
}
}