~yeban/libmemcached/todo-host.c

« back to all changes in this revision

Viewing changes to clients/memslap.c

  • Committer: Brian Aker
  • Date: 2011-03-17 21:45:08 UTC
  • Revision ID: brian@tangent.org-20110317214508-ogufz6pusakvcch0
Merge in updates to make sure exit/return is done properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
659
659
    return -1;
660
660
  }
661
661
 
662
 
  return 0;
 
662
  return EXIT_SUCCESS;
663
663
} /* ms_check_para */
664
664
 
665
665
 
904
904
  ms_global_struct_destroy();
905
905
  ms_setting_cleanup();
906
906
 
907
 
  return 0;
 
907
  return EXIT_SUCCESS;
908
908
} /* main */