diff options
author | Sunzen Wang <sunzen@gmail.com> | 2009-05-14 11:24:04 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-05-14 11:28:49 +0200 |
commit | 4315a3e938ac70ae9ab435cc609b8291a93feaf4 (patch) | |
tree | 107ee6befa5bcf578909d50aa975bb4f54492f94 /tapset/aux_syscalls.stp | |
parent | f90da452b402af56c7f186798911ca5f49ee0cc4 (diff) | |
download | systemtap-steved-4315a3e938ac70ae9ab435cc609b8291a93feaf4.tar.gz systemtap-steved-4315a3e938ac70ae9ab435cc609b8291a93feaf4.tar.xz systemtap-steved-4315a3e938ac70ae9ab435cc609b8291a93feaf4.zip |
Fix inconsistent indentation for including header file in aux_syscalls.stp.
* tapset/aux_syscalls.stp: Don't indent #include <linux/utime.h>.
Diffstat (limited to 'tapset/aux_syscalls.stp')
-rw-r--r-- | tapset/aux_syscalls.stp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index 009b0532..9cb7a3df 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -60,10 +60,10 @@ function _struct_timezone_u:string(uaddr:long) %} %{ - // Needed for the following four functions - // _struct_utimbuf_actime, _struct_utimbuf_modtime, - // _struct_compat_utimbuf_actime, _struct_compat_utimbuf_modtime - #include <linux/utime.h> +// Needed for the following four functions +// _struct_utimbuf_actime, _struct_utimbuf_modtime, +// _struct_compat_utimbuf_actime, _struct_compat_utimbuf_modtime +#include <linux/utime.h> %} // Returns the value of the actime field of a utimbuf in user space |