From 4dda5e9b0829b119c17d950906c61d3ebffc494f Mon Sep 17 00:00:00 2001
From: Vittorio Giovara <vittorio.giovara@gmail.com>
Date: Tue, 11 Nov 2014 17:40:01 +0100
Subject: [PATCH] sunrastenc: mention missing break

Bug-Id: CID 732231
---
 libavcodec/sunrastenc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/sunrastenc.c b/libavcodec/sunrastenc.c
index 25ae9bd039..8e90a6cc87 100644
--- a/libavcodec/sunrastenc.c
+++ b/libavcodec/sunrastenc.c
@@ -169,6 +169,7 @@ static av_cold int sunrast_encode_init(AVCodecContext *avctx)
     case AV_PIX_FMT_PAL8 :
         s->maptype   = RMT_EQUAL_RGB;
         s->maplength = 3 * 256;
+        /* fall-through */
     case AV_PIX_FMT_GRAY8:
         s->depth = 8;
         break;