Made sorting order under Libisofs_file_src_cmp_sizE identical to

old sorting order. Just in case it matters.
(Is there any reason for the inverse order of dev_id ?)
This commit is contained in:
Thomas Schmitt 2009-03-10 15:34:09 +01:00
parent 4d0063f7e2
commit a87c28da95
2 changed files with 3 additions and 3 deletions

View File

@ -49,9 +49,9 @@ int iso_file_src_cmp(const void *n1, const void *n2)
#ifdef Libisofs_file_src_cmp_sizE #ifdef Libisofs_file_src_cmp_sizE
} else if (ino_id1 > ino_id2) {
return -1;
} else if (ino_id1 < ino_id2) { } else if (ino_id1 < ino_id2) {
return -1;
} else if (ino_id1 > ino_id2) {
return 1; return 1;
} else { } else {
size1 = iso_stream_get_size(f1->stream); size1 = iso_stream_get_size(f1->stream);

View File

@ -4823,8 +4823,8 @@ struct burn_source {
They can print errno messages and they They can print errno messages and they
can avoid iconv() if the identical mapping is desired. can avoid iconv() if the identical mapping is desired.
One could install own simple conversion capabilities. One could install own simple conversion capabilities.
#define Libisofs_with_iso_iconV yes
*/ */
#define Libisofs_with_iso_iconV yes
#endif /*LIBISO_LIBISOFS_H_*/ #endif /*LIBISO_LIBISOFS_H_*/