Userland signed char fixes for PPC build. Problems were using a char
return for getopt() and comparing to -1, ditto with fgetc() and EOF, and using the kg_nice value from <sys/user.h> Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> Reviewed by: obrien, bde (a while back) Tested lightly on: ppc, i386, make universe
This commit is contained in:
parent
c652e0ed25
commit
17b9201288
@ -903,8 +903,7 @@ main(int argc, char *argv[])
|
||||
u_char *ram; /* pointer to RAM */
|
||||
Mon960 *Mon; /* Uart */
|
||||
Aali *aap;
|
||||
char c;
|
||||
int i, err;
|
||||
int c, i, err;
|
||||
int binary = 0; /* Send binary file */
|
||||
caddr_t buf; /* Ioctl buffer */
|
||||
char bus_dev[80]; /* Bus device to mmap on */
|
||||
|
@ -362,6 +362,7 @@ load_format(const char *pagedb_path, int page)
|
||||
int found;
|
||||
int lineno;
|
||||
enum { LOCATE, PAGENAME, PAGEDEF } state;
|
||||
int ch;
|
||||
char c;
|
||||
|
||||
#define SETSTATE_LOCATE do { \
|
||||
@ -397,19 +398,20 @@ load_format(const char *pagedb_path, int page)
|
||||
lineno = 0;
|
||||
found = 0;
|
||||
SETSTATE_LOCATE;
|
||||
while ((c = fgetc(pagedb)) != EOF) {
|
||||
while ((ch = fgetc(pagedb)) != EOF) {
|
||||
|
||||
/* Keep a line count to make error messages more useful. */
|
||||
UPDATE_LINENO;
|
||||
|
||||
/* Skip over comments anywhere in the mode database. */
|
||||
if (c == '#') {
|
||||
if (ch == '#') {
|
||||
do {
|
||||
c = fgetc(pagedb);
|
||||
} while (c != '\n' && c != EOF);
|
||||
ch = fgetc(pagedb);
|
||||
} while (ch != '\n' && ch != EOF);
|
||||
UPDATE_LINENO;
|
||||
continue;
|
||||
}
|
||||
c = ch;
|
||||
|
||||
/* Strip out newline characters. */
|
||||
if (c == '\n')
|
||||
|
@ -59,7 +59,7 @@ main(int ac, char **av)
|
||||
{
|
||||
const char *mountpt;
|
||||
struct cmd *c;
|
||||
char ch;
|
||||
int ch;
|
||||
|
||||
mountpt = NULL;
|
||||
while ((ch = getopt(ac, av, "m:")) != -1)
|
||||
|
@ -82,7 +82,7 @@ int
|
||||
rule_main(int ac, char **av)
|
||||
{
|
||||
struct cmd *c;
|
||||
char ch;
|
||||
int ch;
|
||||
|
||||
setprogname("devfs rule");
|
||||
optreset = optind = 1;
|
||||
|
@ -91,7 +91,8 @@ main(int argc, char **argv)
|
||||
bool have_mdtype;
|
||||
bool detach, softdep, autounit;
|
||||
char *mtpoint, *unitstr;
|
||||
char ch, *p;
|
||||
char *p;
|
||||
int ch;
|
||||
void *set;
|
||||
|
||||
/* Misc. initialization. */
|
||||
|
@ -150,9 +150,9 @@ main(argc, argv)
|
||||
struct passwd *pw;
|
||||
struct group *gr;
|
||||
struct quotaname *auxdata;
|
||||
int i, argnum, maxrun, errs;
|
||||
int i, argnum, maxrun, errs, ch;
|
||||
long done = 0;
|
||||
char ch, *name;
|
||||
char *name;
|
||||
|
||||
errs = maxrun = 0;
|
||||
while ((ch = getopt(argc, argv, "aguvl:")) != -1) {
|
||||
|
@ -211,7 +211,7 @@ struct _kwinfo {
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
char ch;
|
||||
int ch;
|
||||
int tmp;
|
||||
|
||||
while ((ch = getopt(argc, argv, "ackm")) != -1) {
|
||||
|
@ -77,7 +77,7 @@ main(int argc, char *argv[])
|
||||
{
|
||||
struct stat sb;
|
||||
int base64;
|
||||
char ch;
|
||||
int ch;
|
||||
char *outfile;
|
||||
|
||||
base64 = 0;
|
||||
|
@ -107,8 +107,8 @@ main(int argc, char **argv)
|
||||
int i, quotatype, range, tmpfd;
|
||||
uid_t startuid, enduid;
|
||||
u_int32_t *limp;
|
||||
char *protoname, *cp, *oldoptarg, ch;
|
||||
int eflag = 0, tflag = 0, pflag = 0;
|
||||
char *protoname, *cp, *oldoptarg;
|
||||
int eflag = 0, tflag = 0, pflag = 0, ch;
|
||||
char *fspath = NULL;
|
||||
char buf[30];
|
||||
|
||||
|
@ -58,9 +58,9 @@ usage(void)
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
char ch, *labellist, *string;
|
||||
char *labellist, *string;
|
||||
mac_t label;
|
||||
int hflag;
|
||||
int ch, hflag;
|
||||
int error, i;
|
||||
|
||||
labellist = NULL;
|
||||
|
@ -57,10 +57,10 @@ usage(void)
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
char ch, *labellist, *string;
|
||||
char *labellist, *string;
|
||||
mac_t label;
|
||||
pid_t pid;
|
||||
int error, pid_set;
|
||||
int ch, error, pid_set;
|
||||
|
||||
pid_set = 0;
|
||||
pid = 0;
|
||||
|
@ -93,7 +93,7 @@ main(int argc, char *argv[])
|
||||
int l = 0, r = 0, t = 0;
|
||||
char lstr[5], rstr[5];
|
||||
int n = 0, lrel = 0, rrel = 0;
|
||||
char ch;
|
||||
int ch;
|
||||
|
||||
char *name;
|
||||
|
||||
|
@ -80,9 +80,9 @@ int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
register struct fstab *fs;
|
||||
char ch, *qfnp, *whoami;
|
||||
char *qfnp, *whoami;
|
||||
long argnum, done = 0;
|
||||
int i, offmode = 0, errs = 0;
|
||||
int ch, i, offmode = 0, errs = 0;
|
||||
|
||||
whoami = rindex(*argv, '/') + 1;
|
||||
if (whoami == (char *)1)
|
||||
|
@ -110,9 +110,9 @@ main(int argc, char **argv)
|
||||
register struct fstab *fs;
|
||||
register struct passwd *pw;
|
||||
register struct group *gr;
|
||||
int gflag = 0, uflag = 0, errs = 0;
|
||||
int ch, gflag = 0, uflag = 0, errs = 0;
|
||||
long i, argnum, done = 0;
|
||||
char ch, *qfnp;
|
||||
char *qfnp;
|
||||
|
||||
while ((ch = getopt(argc, argv, "agnuv")) != -1) {
|
||||
switch(ch) {
|
||||
|
@ -81,9 +81,8 @@ cmpf_t sa_cmp = cmp_usrsys;
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
char ch;
|
||||
char pathacct[] = _PATH_ACCT;
|
||||
int error = 0;
|
||||
int ch, error = 0;
|
||||
|
||||
dfltargv[0] = pathacct;
|
||||
|
||||
|
@ -283,9 +283,9 @@ ask_dev(char *dbuf, const char *msg)
|
||||
int
|
||||
main(int ac, char *av[])
|
||||
{
|
||||
int res, rv, nread;
|
||||
int ch, res, rv, nread;
|
||||
size_t b_size = MIN_SIZE;
|
||||
char ch, *buf, chb[READB_LEN];
|
||||
char *buf, chb[READB_LEN];
|
||||
fd_set fd_s;
|
||||
|
||||
(void) setlocale(LC_TIME, "");
|
||||
|
Loading…
Reference in New Issue
Block a user