diff --git a/libavformat/nut.c b/libavformat/nut.c
index 034934dc9d17e3e02b464079226fd2bbf2b693f5..7eb53136d59dadc33e66be283522f9e5901bd5bc 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -40,11 +40,11 @@ int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){
 }
 
 int ff_nut_sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
-    return (a->pos - b->pos>>32) - (b->pos - a->pos>>32);
+    return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32);
 }
 
 int ff_nut_sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
-    return (a->ts - b->ts>>32) - (b->ts - a->ts>>32);
+    return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32);
 }
 
 void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){