aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Viro <viro@www.linux.org.uk>2004-07-30 08:49:25 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-07-30 08:49:25 -0700
commit6bd51af907a2e57285087f7e18b7b4abbf97f870 (patch)
tree3ec06950665a19f35630e5161f9575418d70afb4 /include
parented7c352949350ed58be908779ca7862300a3c120 (diff)
downloadhistory-6bd51af907a2e57285087f7e18b7b4abbf97f870.tar.gz
[PATCH] signed char portability fix
code using atm_cirange fields assumes that they are signed; make that explicit by s/char/signed char/. Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/atmdev.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h
index ad454dadd221c2..35d22064cc14b4 100644
--- a/include/linux/atmdev.h
+++ b/include/linux/atmdev.h
@@ -155,8 +155,8 @@ struct atm_iobuf {
#define ATM_CI_MAX -1 /* use maximum range of VPI/VCI */
struct atm_cirange {
- char vpi_bits; /* 1..8, ATM_CI_MAX (-1) for maximum */
- char vci_bits; /* 1..16, ATM_CI_MAX (-1) for maximum */
+ signed char vpi_bits; /* 1..8, ATM_CI_MAX (-1) for maximum */
+ signed char vci_bits; /* 1..16, ATM_CI_MAX (-1) for maximum */
};
/* for ATM_SETSC; actually taken from the ATM_VF number space */