mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 18:48:53 +00:00
Fix answers to !winerror <hex number> command and to !error command.
svn path=/trunk/; revision=34081
This commit is contained in:
parent
a46601a21c
commit
3790fc1254
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ namespace TechBot.Commands.Common
|
||||||
{
|
{
|
||||||
XmlElement root = base.m_XmlDocument.DocumentElement;
|
XmlElement root = base.m_XmlDocument.DocumentElement;
|
||||||
XmlNode node = root.SelectSingleNode(String.Format("Winerror[@value='{0}']",
|
XmlNode node = root.SelectSingleNode(String.Format("Winerror[@value='{0}']",
|
||||||
Text));
|
winerror.ToString()));
|
||||||
if (node != null)
|
if (node != null)
|
||||||
{
|
{
|
||||||
XmlAttribute text = node.Attributes["text"];
|
XmlAttribute text = node.Attributes["text"];
|
||||||
|
|
Loading…
Reference in a new issue