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
a45518f5
Commit
a45518f5
authored
7 years ago
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const fix
parent
f4b711a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libasn1parser/asn1p_expr.c
libasn1parser/asn1p_expr.c
+1
-1
libasn1parser/asn1p_expr.h
libasn1parser/asn1p_expr.h
+1
-1
No files found.
libasn1parser/asn1p_expr.c
View file @
a45518f5
...
...
@@ -356,7 +356,7 @@ asn1p_expr_free(asn1p_expr_t *expr) {
}
c
har
*
asn1p_tag2string
(
struct
asn1p_type_tag_s
*
tag
,
char
*
buf
)
{
c
onst
char
*
asn1p_tag2string
(
const
struct
asn1p_type_tag_s
*
tag
,
char
*
buf
)
{
static
char
buf_stat
[
TAG2STRING_BUFFER_SIZE
];
char
*
start
;
char
*
end
;
...
...
This diff is collapsed.
Click to expand it.
libasn1parser/asn1p_expr.h
View file @
a45518f5
...
...
@@ -286,7 +286,7 @@ void asn1p_expr_set_source(asn1p_expr_t *, asn1p_module_t *, int lineno);
asn1p_paramlist_t
*
asn1p_get_namespace
(
asn1p_expr_t
*
);
#define TAG2STRING_BUFFER_SIZE 64
/* buf should be at least this big */
c
har
*
asn1p_tag2string
(
struct
asn1p_type_tag_s
*
tag
,
char
*
opt_buf
);
c
onst
char
*
asn1p_tag2string
(
const
struct
asn1p_type_tag_s
*
tag
,
char
*
opt_buf
);
#define MODULE_NAME_OF(expr) \
((!expr) ? "" : \
...
...
This diff is collapsed.
Click to expand 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