| OLD | NEW |
| 1 Index: src/unicode.c | 1 diff --git a/src/ptp.h b/src/ptp.h |
| 2 =================================================================== | 2 index 62938b4..f25618c 100644 |
| 3 --- src/unicode.c» (revision 148519) | 3 --- a/src/ptp.h |
| 4 +++ src/unicode.c» (working copy) | 4 +++ b/src/ptp.h |
| 5 @@ -29,7 +29,8 @@ | 5 @@ -3238,7 +3238,7 @@ uint16_t ptp_olympus_getcameraid (PTPParams*, unsigned cha
r**, unsigned int *); |
| 6 * | |
| 7 */ | |
| 8 | |
| 9 -#include <config.h> | |
| 10 +#include "config.h" | |
| 11 + | |
| 12 #include <stdlib.h> | |
| 13 #include <string.h> | |
| 14 #ifdef HAVE_ICONV | |
| 15 Index: src/playlist-spl.c | |
| 16 =================================================================== | |
| 17 --- src/playlist-spl.c» (revision 148519) | |
| 18 +++ src/playlist-spl.c» (working copy) | |
| 19 @@ -21,7 +21,7 @@ | |
| 20 * Boston, MA 02111-1307, USA. | |
| 21 */ | |
| 22 | |
| 23 -#include <config.h> | |
| 24 +#include "config.h" | |
| 25 | |
| 26 #include <stdio.h> | |
| 27 #include <stdlib.h> // mkstmp() | |
| 28 Index: src/ptp.h | |
| 29 =================================================================== | |
| 30 --- src/ptp.h» (revision 148519) | |
| 31 +++ src/ptp.h» (working copy) | |
| 32 @@ -2808,7 +2808,7 @@ | |
| 33 static inline int | 6 static inline int |
| 34 ptp_operation_issupported(PTPParams* params, uint16_t operation) | 7 ptp_operation_issupported(PTPParams* params, uint16_t operation) |
| 35 { | 8 { |
| 36 -» int i=0; | 9 -» unsigned int i=0; |
| 37 + uint32_t i=0; | 10 + uint32_t i=0; |
| 38 | 11 |
| 39 for (;i<params->deviceinfo.OperationsSupported_len;i++) { | 12 for (;i<params->deviceinfo.OperationsSupported_len;i++) { |
| 40 if (params->deviceinfo.OperationsSupported[i]==operation) | 13 if (params->deviceinfo.OperationsSupported[i]==operation) |
| OLD | NEW |