# HG changeset patch # User mas01cr # Date 1226495108 0 # Node ID 893bb90f6936e6be0aaae66d06fc22ef7b6f22c3 # Parent 2d638305269b6456e5f1b29a9fb255bb8a62fffc apparently main()'s argc is an int, not an unsigned. Who knew? diff -r 2d638305269b -r 893bb90f6936 audioDB.cpp --- a/audioDB.cpp Wed Nov 12 12:02:49 2008 +0000 +++ b/audioDB.cpp Wed Nov 12 13:05:08 2008 +0000 @@ -887,7 +887,7 @@ // This entry point is visited once per instance // so it is a good place to set any global state variables -int main(const unsigned argc, char* const argv[]){ +int main(const int argc, char* const argv[]){ SERVER_LSH_INDEX_SINGLETON = 0; // Initialize global variables SERVER_ADB_ROOT = 0; // Server-side database root prefix SERVER_ADB_FEATURE_ROOT = 0; // Server-side features root prefix