From 0a3b9e75e0e20377dc4808b2079584cfa9e4f72e Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Thu, 10 Mar 2011 07:58:55 +0000 Subject: [PATCH] Fix spelling. Thanks Marcus. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40899 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/mail/DNSQuery.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/preferences/mail/DNSQuery.cpp b/src/preferences/mail/DNSQuery.cpp index 35c92c8f52..fc2b2f95a0 100644 --- a/src/preferences/mail/DNSQuery.cpp +++ b/src/preferences/mail/DNSQuery.cpp @@ -95,10 +95,10 @@ status_t BRawNetBuffer::ReadString(BString& string) { string = ""; - int32 readed = _ReadStringAt(string, fReadPosition); - if (readed < 0) + int32 read = _ReadStringAt(string, fReadPosition); + if (read < 0) return B_ERROR; - fReadPosition += readed; + fReadPosition += read; return B_OK; }