Use proper format specifier for uint_8 values
%hhu, as suggested by Xcode.
This commit is contained in:
parent
f4ab61fa46
commit
84d33563c5
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
olm_get_library_version(&major, &minor, &patch);
|
olm_get_library_version(&major, &minor, &patch);
|
||||||
|
|
||||||
return [NSString stringWithFormat:@"%tu.%tu.%tu", major, minor, patch];
|
return [NSString stringWithFormat:@"%hhu.%hhu.%hhu", major, minor, patch];
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in a new issue