Message ID | 20220531235806.47553-1-hws@denx.de (mailing list archive) |
---|---|
State | Accepted |
Commit | d1682aedd8e9e9fc6f3edf7764f09475758e84b9 |
Headers | show |
Series | libtracefs: Add missing ) in tracefs_sql docs | expand |
On Wed, 1 Jun 2022 01:58:06 +0200 Harald Seiler <hws@denx.de> wrote: > Fix a small typo. > > Signed-off-by: Harald Seiler <hws@denx.de> Applied, thanks Harald! -- Steve
diff --git a/Documentation/libtracefs-sql.txt b/Documentation/libtracefs-sql.txt index ba4271e..5e48baa 100644 --- a/Documentation/libtracefs-sql.txt +++ b/Documentation/libtracefs-sql.txt @@ -195,7 +195,7 @@ That is: [source,c] -- - select CAST(common_pid AS comm, CAST(id AS syscall) FROM sys_enter + select CAST(common_pid AS comm), CAST(id AS syscall) FROM sys_enter -- Which produces:
Fix a small typo. Signed-off-by: Harald Seiler <hws@denx.de> --- Documentation/libtracefs-sql.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)