Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
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
cpp-libs
libnice
Commits
07f53dfa
Commit
07f53dfa
authored
Nov 04, 2009
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nice_agent_set_software must take a const gchar *, not just a gchar *
parent
11073352
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
agent/agent.c
agent/agent.c
+1
-1
agent/agent.h
agent/agent.h
+1
-1
No files found.
agent/agent.c
View file @
07f53dfa
...
@@ -2373,7 +2373,7 @@ void nice_agent_set_stream_tos (NiceAgent *agent,
...
@@ -2373,7 +2373,7 @@ void nice_agent_set_stream_tos (NiceAgent *agent,
agent_unlock
();
agent_unlock
();
}
}
void
nice_agent_set_software
(
NiceAgent
*
agent
,
gchar
*
software
)
void
nice_agent_set_software
(
NiceAgent
*
agent
,
const
gchar
*
software
)
{
{
agent_lock
();
agent_lock
();
...
...
agent/agent.h
View file @
07f53dfa
...
@@ -660,7 +660,7 @@ void nice_agent_set_stream_tos (
...
@@ -660,7 +660,7 @@ void nice_agent_set_stream_tos (
</note>
</note>
*
*
*/
*/
void
nice_agent_set_software
(
NiceAgent
*
agent
,
gchar
*
software
);
void
nice_agent_set_software
(
NiceAgent
*
agent
,
const
gchar
*
software
);
G_END_DECLS
G_END_DECLS
...
...
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