Changeset 25c4c78 for ipc.c


Ignore:
Timestamp:
2015-01-16T19:50:24Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
a6cd799
Parents:
7549d00
git-author:
Jason Copenhaver <jcopenha@…> (16-01-15 19:50:24)
git-committer:
dequis <dx@…> (16-01-15 19:50:24)
Message:

Fix compiler warnings on Cygwin and Mac OS X.

  • Don't use PIE/PIC on Cygwin/Darwin unless specified as these platforms don't support it.
  • Cleanup warnings for 'make check' build.
  • Fix the type issue for getsockopt calls.
  • Fix enum warnings in Yahoo libs on Mac OS X.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    r7549d00 r25c4c78  
    524524                {
    525525                        /* There is no typo in this line: */
    526                         for( j = 1; cmd[j]; j ++ ); j --;
     526                        for( j = 1; cmd[j]; j ++ )
     527                                ;
     528                        j--;
    527529                       
    528530                        if( j < commands[i].required_parameters )
Note: See TracChangeset for help on using the changeset viewer.