struct process -> Process
diff --git a/sysdeps/linux-gnu/sparc/trace.c b/sysdeps/linux-gnu/sparc/trace.c
index 137c673..fbf61a2 100644
--- a/sysdeps/linux-gnu/sparc/trace.c
+++ b/sysdeps/linux-gnu/sparc/trace.c
@@ -11,7 +11,7 @@
#include "ltrace.h"
void
-get_arch_dep(struct process *proc) {
+get_arch_dep(Process *proc) {
proc_archdep *a;
if (!proc->arch_ptr)
proc->arch_ptr = (void *)malloc(sizeof(proc_archdep));
@@ -23,7 +23,7 @@
* Returns -1 otherwise
*/
int
-syscall_p(struct process *proc, int status, int *sysnum) {
+syscall_p(Process *proc, int status, int *sysnum) {
if (WIFSTOPPED(status)
&& WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) {
void *ip = get_instruction_pointer(proc);
@@ -46,7 +46,7 @@
}
long
-gimme_arg(enum tof type, struct process *proc, int arg_num, arg_type_info *info) {
+gimme_arg(enum tof type, Process *proc, int arg_num, arg_type_info *info) {
proc_archdep *a = (proc_archdep *) proc->arch_ptr;
if (!a->valid) {
fprintf(stderr, "Could not get child registers\n");
@@ -72,7 +72,7 @@
}
void
-save_register_args(enum tof type, struct process *proc) {
+save_register_args(enum tof type, Process *proc) {
proc_archdep *a = (proc_archdep *) proc->arch_ptr;
if (a->valid) {
if (type == LT_TOF_FUNCTION)