Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2012-03-23 17:45:00 +0400
committerRolf Bjarne Kvinge <rolf@xamarin.com>2012-03-23 18:09:43 +0400
commit5e055071e7bde5bd2a2251f128e2e604222543dd (patch)
tree023854bffa267410ac9184011de4dff25623636c
parent11b8dd58cb44b969661702579f17b905d2fa5594 (diff)
[mkbundle] Fix native warnings
-rw-r--r--mcs/tools/mkbundle/mkbundle.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tools/mkbundle/mkbundle.cs b/mcs/tools/mkbundle/mkbundle.cs
index 0d4dc937979..0e565c6a591 100644
--- a/mcs/tools/mkbundle/mkbundle.cs
+++ b/mcs/tools/mkbundle/mkbundle.cs
@@ -293,7 +293,7 @@ class MakeBundle {
return;
}
Console.WriteLine ("System config from: " + config_file);
- tc.WriteLine ("extern const unsigned char system_config;");
+ tc.WriteLine ("extern const char system_config;");
WriteSymbol (ts, "system_config", config_file.Length);
int n;
@@ -316,7 +316,7 @@ class MakeBundle {
return;
}
Console.WriteLine ("Machine config from: " + machine_config_file);
- tc.WriteLine ("extern const unsigned char machine_config;");
+ tc.WriteLine ("extern const char machine_config;");
WriteSymbol (ts, "machine_config", machine_config_file.Length);
int n;