mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-02 12:20:51 +00:00
- Remove unused variables.
- Fix warnings about comparing signed and unsigned ints. Approved by: kib (mentor)
This commit is contained in:
parent
193e2b5546
commit
46448452c0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239898
@ -115,12 +115,11 @@ clear_fsc(void) {
|
||||
|
||||
void
|
||||
powerpc_syscall_entry(struct trussinfo *trussinfo, int nargs) {
|
||||
char buf[32];
|
||||
struct reg regs;
|
||||
void *args;
|
||||
int syscall_num;
|
||||
int i;
|
||||
unsigned int regargs;
|
||||
int regargs;
|
||||
struct syscall *sc;
|
||||
|
||||
/* Account for a 64-bit argument with corresponding alignment. */
|
||||
|
@ -110,12 +110,11 @@ clear_fsc(void) {
|
||||
|
||||
void
|
||||
powerpc64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
|
||||
char buf[32];
|
||||
struct reg regs;
|
||||
void *args;
|
||||
int syscall_num;
|
||||
int i;
|
||||
unsigned int regargs;
|
||||
int regargs;
|
||||
struct syscall *sc;
|
||||
|
||||
cpid = trussinfo->curthread->tid;
|
||||
|
Loading…
Reference in New Issue
Block a user