gjavah.c (output_directory): Make static.
authorBen Elliston <bje@au.ibm.com>
Tue, 23 Nov 2004 04:13:23 +0000 (04:13 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Tue, 23 Nov 2004 04:13:23 +0000 (15:13 +1100)
* gjavah.c (output_directory): Make static.
(temp_directory): Likewise.

From-SVN: r91074

gcc/java/ChangeLog
gcc/java/gjavah.c

index 989ab1e..746ae93 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-23  Ben Elliston  <bje@au.ibm.com>
+
+       * gjavah.c (output_directory): Make static.
+       (temp_directory): Likewise.
+       
 2004-11-15  Tom Tromey  <tromey@redhat.com>
 
        * decl.c (instn_ptr_type_node): Removed.
index 2604f5e..abf75c4 100644 (file)
@@ -61,10 +61,10 @@ int flag_jni = 0;
 int flag_newer = 1;
 
 /* Directory to place resulting files in. Set by -d option. */
-const char *output_directory = "";
+static const char *output_directory = "";
 
 /* Directory to place temporary file.  Set by -td option.  Currently unused. */
-const char *temp_directory = "/tmp";
+static const char *temp_directory = "/tmp";
 
 /* Number of friend functions we have to declare.  */
 static int friend_count;