mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-14 01:50:56 +00:00
cast to fix compiler warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23024 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b93da0fcb9
commit
a4a7fb8f81
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
\
|
||||
(CUM) = ROUND((CUM), align); \
|
||||
(TYPE) = objc_skip_typespec(type); \
|
||||
sprintf((DEST), "%.*s%d", (TYPE)-type, type, (CUM)); \
|
||||
sprintf((DEST), "%.*s%d", (int)((TYPE)-type), type, (CUM)); \
|
||||
if (*(TYPE) == '+') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
Loading…
Reference in a new issue