Changeset 2636
- Timestamp:
- Mar 13, 2006, 5:48:20 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/texinfo/makeinfo/files.c
r2619 r2636 373 373 static char *slashify (char *filename) 374 374 { 375 char *s; 375 376 if (filename) 376 for ( char *s = strchr (filename, '/'); s; s = strchr (s + 1, '/')377 for (s = strchr (filename, '/'); s; s = strchr (s + 1, '/')) 377 378 *s = '/'; 378 379 return filename;
Note:
See TracChangeset
for help on using the changeset viewer.