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
Xiph.Org
ffmpeg2theora
Commits
3d4745b5
Commit
3d4745b5
authored
May 03, 2013
by
Jan Gerber
Browse files
fix oshash output on solaris
parent
a72baecd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/avinfo.c
View file @
3d4745b5
...
...
@@ -462,6 +462,8 @@ void json_oshash(FILE *output, char const *filename, int indent) {
char
hash
[
32
];
#ifdef WIN32
sprintf
(
hash
,
"%016I64x"
,
gen_oshash
(
filename
));
#elif defined (__SVR4) && defined (__sun)
sprintf
(
hash
,
"%016llx"
,
gen_oshash
(
filename
));
#else
sprintf
(
hash
,
"%016qx"
,
gen_oshash
(
filename
));
#endif
...
...
Write
Preview
Supports
Markdown
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