summaryrefslogtreecommitdiffstats
path: root/server/mjpeg_encoder.c
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-22 11:48:53 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-05-03 14:44:11 +0200
commite17767e8927e724687b1529e9bc8ddbc927dbc8f (patch)
treea3eba67021eb352ca4f7831093708d7e1bb80bd0 /server/mjpeg_encoder.c
parent12b9654bf41a83427777b0400f95b918ba21ce74 (diff)
downloadspice-e17767e8927e724687b1529e9bc8ddbc927dbc8f.tar.gz
spice-e17767e8927e724687b1529e9bc8ddbc927dbc8f.tar.xz
spice-e17767e8927e724687b1529e9bc8ddbc927dbc8f.zip
add missing static
Diffstat (limited to 'server/mjpeg_encoder.c')
-rw-r--r--server/mjpeg_encoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/mjpeg_encoder.c b/server/mjpeg_encoder.c
index bae7bd27..30f15efb 100644
--- a/server/mjpeg_encoder.c
+++ b/server/mjpeg_encoder.c
@@ -74,16 +74,16 @@ size_t mjpeg_encoder_get_frame_stride(MJpegEncoder *encoder)
return encoder->stride;
}
-void init_destination(j_compress_ptr cinfo)
+static void init_destination(j_compress_ptr cinfo)
{
}
-boolean empty_output_buffer(j_compress_ptr cinfo)
+static boolean empty_output_buffer(j_compress_ptr cinfo)
{
return FALSE;
}
-void term_destination(j_compress_ptr cinfo)
+static void term_destination(j_compress_ptr cinfo)
{
}