- Timestamp:
- Jul 29, 2012 7:42:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kObjCache/kObjCache.c
r2612 r2613 1067 1067 { 1068 1068 char *pszObjFileAbs; 1069 char *psz; 1069 1070 FILE *pFile = fopen(pszFilename, "w"); 1070 1071 if (!pFile) … … 1073 1074 depOptimize(fFixCase, fQuiet); 1074 1075 1076 /* Make object file name with unix slashes. */ 1075 1077 pszObjFileAbs = MakePathFromDirAndFile(pszObjFile, pszObjDir); 1078 psz = pszObjFileAbs; 1079 while ((psz = strchr(psz, '\\')) != NULL) 1080 *psz++ = '/'; 1081 1076 1082 fprintf(pFile, "%s:", pszObjFileAbs); 1077 1083 free(pszObjFileAbs);
Note:
See TracChangeset
for help on using the changeset viewer.