natSystem.cc (file_encoding): Added return statement.

2000-09-26  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* java/lang/natSystem.cc (file_encoding): Added return statement.

From-SVN: r36647
This commit is contained in:
Alexandre Petit-Bianco 2000-09-26 19:00:28 +00:00 committed by Alexandre Petit-Bianco
parent 5a8e2650ed
commit aca8c6e8a3
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-09-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
* java/lang/natSystem.cc (file_encoding): Added return statement.
2000-09-14 Alexandre Oliva <aoliva@redhat.com>
* Makefile.am: Re-work shell commands that exceeded command-line

View File

@ -165,6 +165,7 @@ file_encoding ()
char *e = nl_langinfo (CODESET);
if (e == NULL || *e == '\0')
e = "8859_1";
return e;
}
#define DEFAULT_FILE_ENCODING file_encoding ()