Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
01ac4158
Commit
01ac4158
authored
Dec 30, 2005
by
Andy Cedilnik
Browse files
COMP: Remove warning about argument not being int
parent
2804a0d7
Changes
1
Show whitespace changes
Inline
Side-by-side
Utilities/cmtar/util.c
View file @
01ac4158
...
...
@@ -163,7 +163,7 @@ oct_to_int(char *oct)
void
int_to_oct_nonull
(
int
num
,
char
*
oct
,
size_t
octlen
)
{
snprintf
(
oct
,
octlen
,
"%*lo"
,
octlen
-
1
,
(
unsigned
long
)
num
);
snprintf
(
oct
,
octlen
,
"%*lo"
,
(
int
)(
octlen
-
1
)
,
(
unsigned
long
)
num
);
oct
[
octlen
-
1
]
=
' '
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment