Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mms-engine
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mer-core
mms-engine
Commits
537b1502
Commit
537b1502
authored
Mar 12, 2016
by
Slava Monich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mms-lib] Fixed compilation warnings in mms_handler.c
parent
854bd1eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mms-lib/src/mms_handler.c
mms-lib/src/mms_handler.c
+4
-4
No files found.
mms-lib/src/mms_handler.c
View file @
537b1502
/*
* Copyright (C) 2013-201
5
Jolla Ltd.
* Copyright (C) 2013-201
6
Jolla Ltd.
* Contact: Slava Monich <slava.monich@jolla.com>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -142,7 +142,7 @@ mms_handler_message_notify_cancel(
if
(
h
&&
call
)
{
MMSHandlerClass
*
klass
=
MMS_HANDLER_GET_CLASS
(
h
);
if
(
klass
->
fn_message_notify_cancel
)
{
return
klass
->
fn_message_notify_cancel
(
h
,
call
);
klass
->
fn_message_notify_cancel
(
h
,
call
);
}
MMS_ERR
(
"mms_handler_message_notify_cancel not implemented"
);
}
...
...
@@ -162,7 +162,7 @@ mms_handler_message_received(
}
MMS_ERR
(
"mms_handler_message_received not implemented"
);
}
return
FALSE
;
return
NULL
;
}
void
...
...
@@ -173,7 +173,7 @@ mms_handler_message_received_cancel(
if
(
h
&&
call
)
{
MMSHandlerClass
*
klass
=
MMS_HANDLER_GET_CLASS
(
h
);
if
(
klass
->
fn_message_received_cancel
)
{
return
klass
->
fn_message_received_cancel
(
h
,
call
);
klass
->
fn_message_received_cancel
(
h
,
call
);
}
MMS_ERR
(
"mms_handler_message_notify_cancel not implemented"
);
}
...
...
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