From: Daniel Jacobowitz Date: Fri, 31 Mar 2006 21:54:54 +0000 (+0000) Subject: Typo fix. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fef4d03709b6cddce1ede51556a439b62d1972e;p=thirdparty%2Fbinutils-gdb.git Typo fix. --- diff --git a/gdb/remote.c b/gdb/remote.c index 897901266a8..10f0a19f375 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2117,7 +2117,7 @@ remote_query_packet_info (void) /* MERGE WARNING: This needs the infinite length incoming packet support, which in turn needs us to adjust rs->buf_size here. */ - if (packet_size >= MAX_REMOTE_PACKET_SIZE) + if (packet_size > MAX_REMOTE_PACKET_SIZE) { warning (_("limiting remote suggested packet size (%d bytes) to %d"), packet_size, MAX_REMOTE_PACKET_SIZE);