diff options
Diffstat (limited to 'src/nvim/profile.c')
-rw-r--r-- | src/nvim/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/profile.c b/src/nvim/profile.c index 004454c984..685497a9e3 100644 --- a/src/nvim/profile.c +++ b/src/nvim/profile.c @@ -35,7 +35,7 @@ #endif /// Struct used in sn_prl_ga for every line of a script. -typedef struct sn_prl_S { +typedef struct { int snp_count; ///< nr of times line was executed proftime_T sn_prl_total; ///< time spent in a line + children proftime_T sn_prl_self; ///< time spent in a line itself |