cleaner get_table calls
diff --git a/tools/pidpersec b/tools/pidpersec
index b84fbe6..e4c6940 100755
--- a/tools/pidpersec
+++ b/tools/pidpersec
@@ -19,7 +19,7 @@
 # load BPF program
 b = BPF(src_file = "pidpersec.c")
 BPF.attach_kprobe(b.load_func("do_count", BPF.KPROBE), "sched_fork")
-stats = b.get_table("stats", c_int, c_ulonglong)
+stats = b.get_table("stats")
 
 # stat indexes
 S_COUNT = 1