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:
authorMark Probst <mark.probst@gmail.com>2013-09-20 20:34:44 +0400
committerMark Probst <mark.probst@gmail.com>2013-09-20 20:34:44 +0400
commit0a695738d8031fbf961299bbb24f1369a7214993 (patch)
tree1a44cb895c6e64ecb7529146e959cabe573757ee /mcs/class/WindowsBase
parent8e78bec72e2357bb0c6c511c74b3369d351c8d58 (diff)
Fix the build.
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs b/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
index eaf8bc2370d..8e02384f58f 100644
--- a/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
+++ b/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
@@ -237,7 +237,7 @@ namespace System.IO.Packaging {
{
while (true)
{
- string s = "Re" + RelationshipId.ToString ();
+ string s = "Re" + relationshipId.ToString ();
if (!RelationshipExists (s))
return s;
relationshipId ++;