diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-05-21 18:05:10 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-05-21 18:05:10 +0200 |
commit | c91b714c01901d81b3d1c15d72bd6dc3375c3302 (patch) | |
tree | a82dc13ddb0d8e48eb52c03314dd17d4517c74c4 | |
parent | b477e59dd3f3d70a7ce0efe28f94dc80e64cacc6 (diff) |
inotail.c: Improve error message
-rw-r--r-- | inotail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -468,7 +468,7 @@ int main(int argc, char **argv) files = malloc(n_files * sizeof(struct file_struct)); if (unlikely(!files)) { - fprintf(stderr, "Error: Not enough memory (%s)\n", strerror(errno)); + fprintf(stderr, "Error: Failed to allocate memory (%s)\n", strerror(errno)); exit(EXIT_FAILURE); } |