MySmartUSB-MK3-Interface

MySmartUSB MK3 Interface
git clone git://xatko.vsos.ethz.ch/MySmartUSB-MK3-Interface.git
Log | Files | Refs

commit a209c378fbd8661d676d5341327bb6764e301c03
parent d8a3e014a274b14957776241db1867a7ed3638d7
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sat, 15 Dec 2012 17:15:54 +0100

Leftover debuggingfunctions removed

Diffstat:
src/option.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/option.c b/src/option.c @@ -35,7 +35,6 @@ int optionAddCommand(struct conf *config, struct command_def *cmd_def, char **ar return 0; } int optionExecGlobal(struct conf *config, struct global_option *opt, char **argv){ - printf("conf.dev=%s - conf.log=%d\n",configuration.device, configuration.log_level); switch(opt->type){ case GLOPT_INCR: *(int *)opt->data=(*(int *)opt->data)+1; @@ -47,7 +46,6 @@ int optionExecGlobal(struct conf *config, struct global_option *opt, char **argv *(char **)opt->data=argv[0]; break; } - printf("conf.dev=%s - conf.log=%d\n",configuration.device, configuration.log_level); return 0; } struct global_option *getGlOptByOpt(char *opt){