[lldb-dev] An other small error

Jean-Daniel Dupas devlists at shadowlab.org
Tue Jul 6 09:07:25 PDT 2010


In CommandCompletion.h:243

if (resolved_username_len = 0 || resolved_username_len >= sizeof (containing_part))

should be 

if (resolved_username_len == 0 || resolved_username_len >= sizeof (containing_part))


That's why you should compile with -Wparenthese ;-)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: hum.patch
Type: application/octet-stream
Size: 693 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20100706/b6e91d57/attachment.obj>
-------------- next part --------------



-- Jean-Daniel






More information about the lldb-dev mailing list