aboutsummaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-12-17 03:20:34 +0100
committerPetr Machata <pmachata@redhat.com>2012-12-17 03:20:34 +0100
commit929bd57ca202fd2f2e8485ebf65d683e664f67b5 (patch)
treec286cdcc9dd72faa6a6d99eeae92a82b71a0257d /debug.h
parent5cde20b3588001c9c3a51e0e7b902fff58393706 (diff)
downloadltrace-929bd57ca202fd2f2e8485ebf65d683e664f67b5.tar.gz
struct Process becomes struct process
This is for consistency with other structures, and ultimately with Linux coding style. The typedef ("Process") was dropped as well for this reason. This opportunity was used to fix coding style around the impacted lines.
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.h b/debug.h
index 8ae1804..542dda5 100644
--- a/debug.h
+++ b/debug.h
@@ -38,7 +38,7 @@ void debug_(int level, const char *file, int line,
/* Dump LENGTH bytes of memory starting on address ADDR of inferior
* PID. */
-int xinfdump(struct Process *proc, arch_addr_t addr, size_t length);
+int xinfdump(struct process *proc, arch_addr_t addr, size_t length);
#define debug(level, expr...) debug_(level, __FILE__, __LINE__, expr)