LSM303: Fix usage function call to fit existing structure.

This commit is contained in:
Lorenz Meier 2014-07-08 13:52:10 +02:00
parent 92426c5cfc
commit 7d15e999f1
1 changed files with 6 additions and 5 deletions

View File

@ -1797,6 +1797,7 @@ void reset();
void info();
void regdump();
void logging();
void usage();
/**
* Start the driver.
@ -2013,17 +2014,17 @@ logging()
exit(0);
}
} // namespace
void
lsm303d_usage()
usage()
{
warnx("missing command: try 'start', 'info', 'test', 'reset', 'regdump', 'logging'");
warnx("options:");
warnx(" -X (external bus)");
warnx(" -R rotation");
}
} // namespace
int
lsm303d_main(int argc, char *argv[])
{
@ -2041,7 +2042,7 @@ lsm303d_main(int argc, char *argv[])
rotation = (enum Rotation)atoi(optarg);
break;
default:
lsm303d_usage();
lsm303d::usage();
exit(0);
}
}