Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
hardware_ril
Commits
c19af431
Commit
c19af431
authored
11 years ago
by
Colin Cross
Committed by
Android Git Automerger
11 years ago
Browse files
Options
Download
Plain Diff
am
ebdf40e6
: Merge "reference-ril: fix LP64 warnings"
* commit '
ebdf40e6
': reference-ril: fix LP64 warnings
parents
eacd3caa
ebdf40e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
reference-ril/reference-ril.c
reference-ril/reference-ril.c
+2
-2
No files found.
reference-ril/reference-ril.c
View file @
c19af431
...
...
@@ -2858,14 +2858,14 @@ int query_ctec(ModemInfo *mdm, int *current, int32_t *preferred)
int
err
;
int
res
;
RLOGD
(
"query_ctec. current: %
d
, preferred: %
d
"
,
(
int
)
current
,
(
int
)
preferred
);
RLOGD
(
"query_ctec. current: %
p
, preferred: %
p
"
,
current
,
preferred
);
err
=
at_send_command_singleline
(
"AT+CTEC?"
,
"+CTEC:"
,
&
response
);
if
(
!
err
&&
response
->
success
)
{
res
=
parse_technology_response
(
response
->
p_intermediates
->
line
,
current
,
preferred
);
at_response_free
(
response
);
return
res
;
}
RLOGE
(
"Error executing command: %d. response: %
x
. status: %d"
,
err
,
(
int
)
response
,
response
?
response
->
success
:
-
1
);
RLOGE
(
"Error executing command: %d. response: %
p
. status: %d"
,
err
,
response
,
response
?
response
->
success
:
-
1
);
at_response_free
(
response
);
return
-
1
;
}
...
...
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