summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/jpeg_encoder.h2
-rw-r--r--server/red_tunnel_worker.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/jpeg_encoder.h b/server/jpeg_encoder.h
index 2b8d8b20..74c73243 100644
--- a/server/jpeg_encoder.h
+++ b/server/jpeg_encoder.h
@@ -53,7 +53,7 @@ struct JpegEncoderUsrContext {
JpegEncoderContext* jpeg_encoder_create(JpegEncoderUsrContext *usr);
void jpeg_encoder_destroy(JpegEncoderContext *encoder);
-/* returns the total size of the encoded data. Images must be supplied from the the
+/* returns the total size of the encoded data. Images must be supplied from the
top line to the bottom */
int jpeg_encode(JpegEncoderContext *jpeg, int quality, JpegEncoderImageType type,
int width, int height, uint8_t *lines, unsigned int num_lines, int stride,
diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c
index 250e8b3e..429f7372 100644
--- a/server/red_tunnel_worker.c
+++ b/server/red_tunnel_worker.c
@@ -323,7 +323,7 @@ static TunneledBufferProcessQueue *tunnel_socket_alloc_simple_print_reply_proces
static void free_simple_process_queue(TunneledBufferProcessQueue *queue);
typedef struct ServiceCallback {
- /* allocating the the queue & setting the analysis proc by service type */
+ /* allocating the queue & setting the analysis proc by service type */
TunneledBufferProcessQueue *(*alloc_process_queue)(RedSocket * sckt);
void (*free_process_queue)(TunneledBufferProcessQueue *queue);
} ServiceCallback;