summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/metadata.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/metadata.c b/apps/metadata.c
index 33ec296c35..0cf0890886 100644
--- a/apps/metadata.c
+++ b/apps/metadata.c
@@ -196,9 +196,10 @@ int read_uint32be(int fd, unsigned int* buf) {
196 if (n==4) { 196 if (n==4) {
197 tmp=p[0]; 197 tmp=p[0];
198 p[0]=p[3]; 198 p[0]=p[3];
199 p[1]=p[2];
200 p[2]=p[1];
201 p[3]=tmp; 199 p[3]=tmp;
200 tmp=p[2];
201 p[2]=p[1];
202 p[1]=tmp;
202 } 203 }
203 204
204 return(n); 205 return(n);