summaryrefslogtreecommitdiff
path: root/fetch_struct_flock.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:26:03 +0000
committerDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:43:34 +0000
commit7fa3d78319b20a996923f9b665afc3a3571ed08b (patch)
treec1fcdd2b642ebc521fea460e8aa26a0a5295270c /fetch_struct_flock.c
parente625443bb501c99e3cbed7cf041ef3036c7955f0 (diff)
downloadstrace-7fa3d78319b20a996923f9b665afc3a3571ed08b.tar.gz
Automatically replace kernel_(scno|ureg)_t with kernel_ulong_t
Remove temporary types created for transition from long to kernel_ulong_t. Automatically replace kernel_scno_t and kernel_ureg_t with kernel_ulong_t using $ git grep -El 'kernel_(scno|ureg)_t' | xargs sed -ri 's/kernel_(scno|ureg)_t/kernel_ulong_t/g' * kernel_types.h (kernel_scno_t, kernel_ureg_t): Remove. All users updated.
Diffstat (limited to 'fetch_struct_flock.c')
-rw-r--r--fetch_struct_flock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetch_struct_flock.c b/fetch_struct_flock.c
index 773505fef..bb248761d 100644
--- a/fetch_struct_flock.c
+++ b/fetch_struct_flock.c
@@ -52,7 +52,7 @@ typedef struct_kernel_flock64 struct_flock64;
&& FLOCK_MEMBERS_EQ(type, l_pid))
MPERS_PRINTER_DECL(bool, fetch_struct_flock, struct tcb *const tcp,
- const kernel_ureg_t addr, void *const p)
+ const kernel_ulong_t addr, void *const p)
{
struct_kernel_flock64 *pfl = p;
struct_flock mfl;
@@ -72,7 +72,7 @@ MPERS_PRINTER_DECL(bool, fetch_struct_flock, struct tcb *const tcp,
}
MPERS_PRINTER_DECL(bool, fetch_struct_flock64, struct tcb *const tcp,
- const kernel_ureg_t addr, void *const p)
+ const kernel_ulong_t addr, void *const p)
{
struct_kernel_flock64 *pfl = p;
struct_flock64 mfl;