diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2008-10-20 01:10:11 +0300 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2008-10-20 01:10:11 +0300 | 
| commit | efcfad7c009502b2951a2408df3a94b83934e288 (patch) | |
| tree | 464e9094844e5a7e4e80a476088491608bed939e /tools/sdptool.c | |
| parent | 0c1d6232e7b4c39d33dfcc759bd19f050d7953e7 (diff) | |
Get rid of format string warnings with recent gcc versions
Recent gcc versions, like 4.3.2 from ubuntu intrepid, give warnings like
"format not a string literal and no format arguments" without this
patch.
Diffstat (limited to 'tools/sdptool.c')
| -rw-r--r-- | tools/sdptool.c | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/tools/sdptool.c b/tools/sdptool.c index e2f2a29d..b294cf42 100644 --- a/tools/sdptool.c +++ b/tools/sdptool.c @@ -828,7 +828,7 @@ static int cmd_setattr(int argc, char **argv)  	for_each_opt(opt, set_options, NULL) {  		switch(opt) {  		default: -			printf(set_help); +			printf("%s", set_help);  			return -1;  		}  	} @@ -837,7 +837,7 @@ static int cmd_setattr(int argc, char **argv)  	argv += optind;  	if (argc < 3) { -		printf(set_help); +		printf("%s", set_help);  		return -1;  	} @@ -967,7 +967,7 @@ static int cmd_setseq(int argc, char **argv)  	for_each_opt(opt, seq_options, NULL) {  		switch(opt) {  		default: -			printf(seq_help); +			printf("%s", seq_help);  			return -1;  		}  	} @@ -976,7 +976,7 @@ static int cmd_setseq(int argc, char **argv)  	argv += optind;  	if (argc < 3) { -		printf(seq_help); +		printf("%s", seq_help);  		return -1;  	} @@ -3493,7 +3493,7 @@ static int cmd_add(int argc, char **argv)  				si.network = strtol(optarg + 2, NULL, 16);  			break;  		default: -			printf(add_help); +			printf("%s", add_help);  			return -1;  		}  	} @@ -3502,7 +3502,7 @@ static int cmd_add(int argc, char **argv)  	argv += optind;  	if (argc < 1) { -		printf(add_help); +		printf("%s", add_help);  		return -1;  	} @@ -3569,7 +3569,7 @@ static int cmd_del(int argc, char **argv)  	for_each_opt(opt, del_options, 0) {  		switch (opt) {  		default: -			printf(del_help); +			printf("%s", del_help);  			return -1;  		}  	} @@ -3578,7 +3578,7 @@ static int cmd_del(int argc, char **argv)  	argv += optind;  	if (argc < 1) { -		printf(del_help); +		printf("%s", del_help);  		return -1;  	} @@ -3606,7 +3606,7 @@ static void inquiry(handler_t handler, void *arg)  static void doprintf(void *data, const char *str)  { -	printf(str); +	printf("%s", str);  }  /* @@ -3739,7 +3739,7 @@ static int cmd_browse(int argc, char **argv)  			sdp_uuid16_create(&context.group, L2CAP_UUID);  			break;  		default: -			printf(browse_help); +			printf("%s", browse_help);  			return -1;  		}  	} @@ -3807,7 +3807,7 @@ static int cmd_search(int argc, char **argv)  			context.view = XML_VIEW;  			break;  		default: -			printf(search_help); +			printf("%s", search_help);  			return -1;  		}  	} @@ -3816,7 +3816,7 @@ static int cmd_search(int argc, char **argv)  	argv += optind;  	if (argc < 1) { -		printf(search_help); +		printf("%s", search_help);  		return -1;  	} @@ -3956,7 +3956,7 @@ static int cmd_records(int argc, char **argv)  			context.view = XML_VIEW;  			break;  		default: -			printf(records_help); +			printf("%s", records_help);  			return -1;  		}  	} @@ -3965,7 +3965,7 @@ static int cmd_records(int argc, char **argv)  	argv += optind;  	if (argc < 1) { -		printf(records_help); +		printf("%s", records_help);  		return -1;  	} @@ -4026,7 +4026,7 @@ static int cmd_get(int argc, char **argv)  			context.view = XML_VIEW;  			break;  		default: -			printf(get_help); +			printf("%s", get_help);  			return -1;  		}  	} @@ -4035,7 +4035,7 @@ static int cmd_get(int argc, char **argv)  	argv += optind;  	if (argc < 1) { -		printf(get_help); +		printf("%s", get_help);  		return -1;  	} | 
