Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Snoop/CollectorExts/DbMisc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ private void
data.Add(new Snoop.Data.String(dxfCodeStr, (string)tmpVal.Value));
}
else if ((typeCode == 5) || (typeCode == 105)) {
dxfCodeStr = string.Format("{0:d} (handle/string", typeCode);
dxfCodeStr = string.Format("{0:d} (handle/string)", typeCode);
data.Add(new Snoop.Data.String(dxfCodeStr, (string)tmpVal.Value));
}
else if ((typeCode >= 10) && (typeCode <= 17)) {
Expand All @@ -473,7 +473,7 @@ private void
}
else if ((typeCode > 90) && (typeCode <= 99)) {
dxfCodeStr = string.Format("{0:d} (long)", typeCode);
data.Add(new Snoop.Data.Int(dxfCodeStr, (int)(long)tmpVal.Value));
data.Add(new Snoop.Data.Int(dxfCodeStr, (int)tmpVal.Value));
}
else if (typeCode == 100) {
dxfCodeStr = string.Format("{0:d} (sub-class marker/string)", typeCode);
Expand Down