Skip to content

Commit

Permalink
Minor porting issue fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
nulltoken committed Oct 8, 2009
1 parent 6a2fb54 commit 12fc9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/RevWalk/RevObject.cs
Expand Up @@ -198,7 +198,7 @@ public override string ToString()
var s = new StringBuilder();
s.Append(Constants.typeString(Type));
s.Append(' ');
s.Append(GetType().Name);
s.Append(Name);
s.Append(' ');
appendCoreFlags(s);
return s.ToString();
Expand Down

0 comments on commit 12fc9d7

Please sign in to comment.