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:
authorMarek Safar <marek.safar@gmail.com>2017-01-17 15:47:19 +0300
committerMarek Safar <marek.safar@gmail.com>2017-01-17 15:47:42 +0300
commit1c77897951e790a0304b758bd6c6680529e91e7a (patch)
tree3b45a16f1d3617936088c62dd5d953f285d47259 /mcs/class/PEAPI
parent997a6529232b9f9a01c335620e1166b8f81a6161 (diff)
Clean up few warnings
Diffstat (limited to 'mcs/class/PEAPI')
-rw-r--r--mcs/class/PEAPI/PEAPI.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/PEAPI/PEAPI.cs b/mcs/class/PEAPI/PEAPI.cs
index ec3cb410717..a52bf41960a 100644
--- a/mcs/class/PEAPI/PEAPI.cs
+++ b/mcs/class/PEAPI/PEAPI.cs
@@ -106,7 +106,8 @@ namespace PEAPI {
private static readonly string dllHintNameTable = "\0\0_CorDllMain\0";
private static readonly string runtimeEngineName = "mscoree.dll\0\0";
- private Section text, sdata, rsrc;
+ private Section text, sdata;
+ static readonly Section rsrc = null;
ArrayList data;
BinaryWriter reloc = new BinaryWriter(new MemoryStream());
uint dateStamp = 0;