Fix up some warnings that show up on ppc
This commit is contained in:
parent
2d848a476a
commit
24982c589b
@ -837,7 +837,7 @@ extern int dpkg_main(int argc, char **argv)
|
|||||||
optind++;
|
optind++;
|
||||||
}
|
}
|
||||||
|
|
||||||
make_directory(infodir, S_IRWXU, FILEUTILS_RECUR);
|
make_directory((char *)infodir, S_IRWXU, FILEUTILS_RECUR);
|
||||||
|
|
||||||
status = status_read();
|
status = status_read();
|
||||||
|
|
||||||
|
@ -605,7 +605,7 @@ static int list_single(struct dnode *dn)
|
|||||||
for (i=0; i<=31; i++) {
|
for (i=0; i<=31; i++) {
|
||||||
switch (list_fmt & (1<<i)) {
|
switch (list_fmt & (1<<i)) {
|
||||||
case LIST_INO:
|
case LIST_INO:
|
||||||
printf("%7ld ", dn->dstat.st_ino);
|
printf("%7ld ", (long int)dn->dstat.st_ino);
|
||||||
column += 8;
|
column += 8;
|
||||||
break;
|
break;
|
||||||
case LIST_BLOCKS:
|
case LIST_BLOCKS:
|
||||||
|
2
dpkg.c
2
dpkg.c
@ -837,7 +837,7 @@ extern int dpkg_main(int argc, char **argv)
|
|||||||
optind++;
|
optind++;
|
||||||
}
|
}
|
||||||
|
|
||||||
make_directory(infodir, S_IRWXU, FILEUTILS_RECUR);
|
make_directory((char *)infodir, S_IRWXU, FILEUTILS_RECUR);
|
||||||
|
|
||||||
status = status_read();
|
status = status_read();
|
||||||
|
|
||||||
|
2
ls.c
2
ls.c
@ -605,7 +605,7 @@ static int list_single(struct dnode *dn)
|
|||||||
for (i=0; i<=31; i++) {
|
for (i=0; i<=31; i++) {
|
||||||
switch (list_fmt & (1<<i)) {
|
switch (list_fmt & (1<<i)) {
|
||||||
case LIST_INO:
|
case LIST_INO:
|
||||||
printf("%7ld ", dn->dstat.st_ino);
|
printf("%7ld ", (long int)dn->dstat.st_ino);
|
||||||
column += 8;
|
column += 8;
|
||||||
break;
|
break;
|
||||||
case LIST_BLOCKS:
|
case LIST_BLOCKS:
|
||||||
|
Loading…
Reference in New Issue
Block a user