8c3b7a9bf3
image.cpp:557:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char *suffix1 = strrchr(src, '.');
^ ~~~~~~~~~~~~~~~~~~
image.cpp:558:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char *suffix2 = strrchr(dest, '.');
^ ~~~~~~~~~~~~~~~~~~
PR: 212343
Reported by: antoine (via exp-run)
14 lines
411 B
C++
14 lines
411 B
C++
--- image.cpp.orig 2004-07-20 16:48:11 UTC
|
|
+++ image.cpp
|
|
@@ -554,8 +554,8 @@ restore_mtime (const char *file_name, ti
|
|
static int
|
|
convert_needed_p (const char *src, const char *dest)
|
|
{
|
|
- char *suffix1 = strrchr(src, '.');
|
|
- char *suffix2 = strrchr(dest, '.');
|
|
+ const char *suffix1 = strrchr(src, '.');
|
|
+ const char *suffix2 = strrchr(dest, '.');
|
|
|
|
return strcmp(suffix1, suffix2) != 0;
|
|
}
|