Skip to content

Commit

Permalink
[mms_task_encode] Fixed compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Feb 27, 2014
1 parent ab9b95b commit 6ce35b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mms-lib/src/mms_task_encode.c
Expand Up @@ -93,7 +93,7 @@ mms_encode_job_resize(
struct stat st;
int err = fstat(fd, &st);
if (!err) {
if (largest_size < st.st_size) {
if (largest_size < (unsigned int)st.st_size) {
largest_size = st.st_size;
resize_me = part;
}
Expand Down

0 comments on commit 6ce35b6

Please sign in to comment.