aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/asn1c.c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2013-03-25 18:51:51 -0700
committerLev Walkin <vlm@lionet.info>2013-03-25 18:51:51 -0700
commit0ff71290403f4212a31a3dda25bee92a4b25c9ec (patch)
tree2df67a382ff74c13318f3e3395b1d3f55e55e636 /asn1c/asn1c.c
parente14480fa0b9ff7fb67b90bcbaef7bf156c0ea433 (diff)
remove warnings
Diffstat (limited to 'asn1c/asn1c.c')
-rw-r--r--asn1c/asn1c.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/asn1c/asn1c.c b/asn1c/asn1c.c
index 4c565e4a..330ffa22 100644
--- a/asn1c/asn1c.c
+++ b/asn1c/asn1c.c
@@ -101,7 +101,7 @@ main(int ac, char **av) {
asn1_compiler_flags |= A1C_INCLUDES_QUOTED;
} else if(strcmp(optarg, "unnamed-unions") == 0) {
asn1_compiler_flags |= A1C_UNNAMED_UNIONS;
- } else if(strcmp(optarg, "skeletons-copy") == 0) {
+ } else if(strcmp(optarg, "skeletons-copy") == 0) { // DEPRECATED
asn1_compiler_flags |= A1C_SKELETONS_COPY;
} else {
fprintf(stderr, "-f%s: Invalid argument\n", optarg);
@@ -462,7 +462,6 @@ usage(const char *av0) {
" -fno-constraints Do not generate constraint checking code\n"
" -fno-include-deps Do not generate courtesy #includes for dependencies\n"
" -funnamed-unions Enable unnamed unions in structures\n"
-" -fskeletons-copy Force copying the support files\n"
"\n"
" -gen-PER Generate PER support code\n"