Fix warnings.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2811 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-09-08 08:02:59 +00:00
parent 4ecaf2fb3c
commit 10f87e10d0
2 changed files with 4 additions and 3 deletions

View File

@ -295,7 +295,7 @@ gncPostFileOpen (const char * filename)
void
gncFileOpen (void)
{
char * newfile;
const char * newfile;
if (!gncFileQuerySave ())
return;
@ -407,7 +407,8 @@ gncFileSaveAs (void)
{
Session *newsess;
AccountGroup *oldgrp;
char *filename, *newfile;
const char *filename;
char *newfile;
AccountGroup *newgrp;
char * oldfile;
char buf[BUFSIZE];

View File

@ -301,7 +301,7 @@ static void
gnc_report_export(ReportData *report_data)
{
GtkWindow *parent;
char *export_filename;
const char *export_filename;
struct stat file_status;
FILE *export_dest;
char *message;