mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-20 21:57:10 -04:00
check_procs: fix typo
Fix a typo in previous commit where st_ was missing in the mock struct_stat_t, causing check_procs.c to not compile without sys/stat.h.
This commit is contained in:
parent
ce7a99789d
commit
274f3ddee2
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net";
|
|||
typedef struct stat struct_stat_t;
|
||||
#else
|
||||
/* won't be used anyway */
|
||||
typedef struct { dev_t dev; ino_t ino; } struct_stat_t;
|
||||
typedef struct { dev_t st_dev; ino_t st_ino; } struct_stat_t;
|
||||
#endif
|
||||
|
||||
int process_arguments (int, char **);
|
||||
|
|
|
|||
Loading…
Reference in a new issue