From 625d69890b65321e5b41acada409a773d8900e4f Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Wed, 12 Mar 2003 07:53:55 +0000 Subject: [PATCH] made callback functions static. --- pdf_g4.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pdf_g4.c b/pdf_g4.c index e5f02ec..195e1b9 100644 --- a/pdf_g4.c +++ b/pdf_g4.c @@ -4,7 +4,7 @@ * will be compressed using ITU-T T.6 (G4) fax encoding. * * PDF routines - * $Id: pdf_g4.c,v 1.11 2003/03/11 23:43:56 eric Exp $ + * $Id: pdf_g4.c,v 1.12 2003/03/11 23:53:55 eric Exp $ * Copyright 2003 Eric Smith * * This program is free software; you can redistribute it and/or modify @@ -52,9 +52,9 @@ struct pdf_g4_image }; -void pdf_write_g4_content_callback (pdf_file_handle pdf_file, - struct pdf_obj *stream, - void *app_data) +static void pdf_write_g4_content_callback (pdf_file_handle pdf_file, + struct pdf_obj *stream, + void *app_data) { struct pdf_g4_image *image = app_data; @@ -71,9 +71,9 @@ void pdf_write_g4_content_callback (pdf_file_handle pdf_file, } -void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file, - struct pdf_obj *stream, - void *app_data) +static void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file, + struct pdf_obj *stream, + void *app_data) { struct pdf_g4_image *image = app_data;