# # patch "ChangeLog" # from [d7d67824b355065c07adcf31a123e7a14cf48155] # to [fc29b1b0e56094bb18cc92c8d8f8cac560d98dd0] # # patch "monotone.cc" # from [2419f27fdb3cba77c658c0f4eac4d0b5026e1884] # to [0139d2c71dbb12198e6206749b71ecb1e6286459] # # patch "netsync.cc" # from [98bb94f9c22a40bc6f826cad62737a7f9bfb9a04] # to [b68476ffc5852e56195629f4998af91221e48dcd] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-04-17 Matthew Gregan + + * monotone.cc: Fix warnings: add missing initializers. + * netsync.cc: Fix warnings: inline static vs static inline. + 2005-04-15 Sebastian Spaeth * ui.cc: print byte progress to one decimal place --- monotone.cc +++ monotone.cc @@ -73,7 +73,7 @@ {"root", 0, POPT_ARG_STRING, &argstr, OPT_ROOT, "limit search for working copy to specified root", NULL}, {"depth", 0, POPT_ARG_LONG, &arglong, OPT_DEPTH, "limit the log output to the given number of entries", NULL}, {"xargs", '@', POPT_ARG_STRING, &argstr, OPT_ARGFILE, "insert command line arguments taken from the given file", NULL}, - { NULL, 0, 0, NULL, 0 } + { NULL, 0, 0, NULL, 0, NULL, NULL } }; // there are 3 variables which serve as roots for our system. --- netsync.cc +++ netsync.cc @@ -725,7 +725,7 @@ attached[i] = curr_attached; } -static inline id +inline static id plain_id(manifest_id const & i) { id tmp; @@ -734,7 +734,7 @@ return tmp; } -static inline id +inline static id plain_id(file_id const & i) { id tmp;