tools/opensnoop: Fix compilation problem
authorMauricio Vásquez <mauricio@kinvolk.io>
Mon, 8 Jun 2020 13:12:08 +0000 (08:12 -0500)
committeryonghong-song <ys114321@gmail.com>
Mon, 8 Jun 2020 17:48:18 +0000 (10:48 -0700)
Fix stupid bug introduced by myself.

Signed-off-by: Mauricio Vásquez <mauricio@kinvolk.io>
tools/opensnoop.py

index dffb021..51d3dc0 100755 (executable)
@@ -195,7 +195,7 @@ KRETFUNC_PROBE(do_sys_open, int dfd, const char __user *filename, int flags, int
 
     events.perf_submit(ctx, &data, sizeof(data));
 
-    return 0:
+    return 0;
 }
 """