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
external_sqlite
Commits
24667e1f
Commit
24667e1f
authored
14 years ago
by
Rene Bolldorf
Browse files
Options
Download
Email Patches
Plain Diff
Fix compilation error: invalid conversion from 'const char*' to 'char*'.
Change-Id: I1116bf4360493f2cfed1158310ac2966abfedd56
parent
904607b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
android/OldPhoneNumberUtils.cpp
android/OldPhoneNumberUtils.cpp
+1
-1
No files found.
android/OldPhoneNumberUtils.cpp
View file @
24667e1f
...
...
@@ -173,7 +173,7 @@ static int minPositive(int a, int b)
* is no such character in a.
*/
static
int
indexOf
(
const
char
*
a
,
char
b
)
{
char
*
ix
=
strchr
(
a
,
b
);
const
char
*
ix
=
strchr
(
a
,
b
);
if
(
ix
==
NULL
)
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