mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
fix weird double-bang thing
This commit is contained in:
parent
55d86d5ca2
commit
9cd76d887d
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
/* -*- compile-command: "make -j3"; -*- */
|
||||
|
||||
/*
|
||||
* Copyright 2005 - 2012 by Eric House (xwords@eehouse.org). All rights
|
||||
* Copyright 2005 - 2016 by Eric House (xwords@eehouse.org). All rights
|
||||
* reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1165,7 +1165,7 @@ CookieRef::sendResponse( const CRefEvent* evt, bool initial,
|
|||
// Write an empty string if the client passed the ID to us, or the id
|
||||
// if it's new to the client.
|
||||
char idbuf[MAX_DEVID_LEN + 1];
|
||||
if ( !!ID_TYPE_RELAY < evt->u.con.devID->m_devIDType ) {
|
||||
if ( ID_TYPE_RELAY < evt->u.con.devID->m_devIDType ) {
|
||||
len = snprintf( idbuf, sizeof(idbuf), "%.8X", *devID );
|
||||
assert( len < sizeof(idbuf) );
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue