~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Stewart Smith
  • Date: 2009-10-08 13:58:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091008135844-4rbkdkcnap4udg8z
make get_one_option static to drizzledump.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
using namespace std;
47
47
 
48
 
extern "C"
49
 
bool get_one_option(int optid, const struct my_option *, char *argument);
50
 
 
51
48
/* Exit codes */
52
49
 
53
50
#define EX_USAGE 1
543
540
}
544
541
 
545
542
 
546
 
bool get_one_option(int optid, const struct my_option *, char *argument)
 
543
static bool get_one_option(int optid, const struct my_option *, char *argument)
547
544
{
548
545
  char *endchar= NULL;
549
546
  uint64_t temp_drizzle_port= 0;