Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
liboggz
Commits
7df1eb0e
Commit
7df1eb0e
authored
May 08, 2009
by
conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix by doublec for int32_be_at (broken in
351a8588
)
parent
351a8588
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/liboggz/oggz_byteorder.h
src/liboggz/oggz_byteorder.h
+1
-1
No files found.
src/liboggz/oggz_byteorder.h
View file @
7df1eb0e
...
...
@@ -116,7 +116,7 @@ _le_64 (ogg_int64_t l)
static
ogg_int32_t
int32_be_at
(
unsigned
char
*
c
)
{
return
(
c
[
0
]
<<
24
)
+
(
c
[
1
]
<<
16
)
+
(
c
[
2
]
<<
8
)
+
c
[
0
]
;
return
(
c
[
0
]
<<
24
)
+
(
c
[
1
]
<<
16
)
+
(
c
[
2
]
<<
8
)
+
c
[
3
]
;
}
#endif
/* __OGGZ_BYTEORDER_H__ */
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