IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 1, 2012, 5:41:44 PM (14 years ago)
Author:
eugene
Message:

various fixes to address somewhat more pedantic aspects of the new gcc (version 4.6.3)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120601/Ohana/src/libkapa/src/KapaOpen.c

    r27988 r33982  
    252252int KapaOpenNamedSocket (char *kapa_exec, char *name) {
    253253
    254   int InitSocket, status;
     254  int InitSocket;
    255255  struct sockaddr_un Address;
    256256  socklen_t AddressLength;
     
    269269  Address.sun_family = AF_UNIX;
    270270  InitSocket = socket (AF_UNIX, SOCK_STREAM, 0);
    271   status = bind (InitSocket, (struct sockaddr *) &Address, sizeof (Address));
    272   status = listen (InitSocket, 1);
     271  bind (InitSocket, (struct sockaddr *) &Address, sizeof (Address));
     272  listen (InitSocket, 1);
    273273
    274274  if (name == NULL) {
Note: See TracChangeset for help on using the changeset viewer.