Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
0ff71290
Commit
0ff71290
authored
Mar 25, 2013
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove warnings
parent
e14480fa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
asn1c/asn1c.c
asn1c/asn1c.c
+1
-2
skeletons/INTEGER.c
skeletons/INTEGER.c
+1
-1
skeletons/asn_codecs_prim.c
skeletons/asn_codecs_prim.c
+1
-1
No files found.
asn1c/asn1c.c
View file @
0ff71290
...
...
@@ -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
"
...
...
skeletons/INTEGER.c
View file @
0ff71290
...
...
@@ -325,7 +325,7 @@ static enum xer_pbd_rval
INTEGER__xer_body_decode
(
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
const
void
*
chunk_buf
,
size_t
chunk_size
)
{
INTEGER_t
*
st
=
(
INTEGER_t
*
)
sptr
;
long
dec_value
;
long
hex_value
;
long
hex_value
=
0
;
const
char
*
lp
;
const
char
*
lstart
=
(
const
char
*
)
chunk_buf
;
const
char
*
lstop
=
lstart
+
chunk_size
;
...
...
skeletons/asn_codecs_prim.c
View file @
0ff71290
...
...
@@ -15,7 +15,7 @@ ber_decode_primitive(asn_codec_ctx_t *opt_codec_ctx,
void
**
sptr
,
const
void
*
buf_ptr
,
size_t
size
,
int
tag_mode
)
{
ASN__PRIMITIVE_TYPE_t
*
st
=
(
ASN__PRIMITIVE_TYPE_t
*
)
*
sptr
;
asn_dec_rval_t
rval
;
ber_tlv_len_t
length
;
ber_tlv_len_t
length
=
0
;
// =0 to avoid [incorrect] warning.
/*
* If the structure is not there, allocate it.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment