Commit a7b28faf authored by Rusty Russell's avatar Rusty Russell

tal/str: use tal/grab_file not grab_file in example.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent cbb99113
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* Example: * Example:
* #include <ccan/tal/str/str.h> * #include <ccan/tal/str/str.h>
* #include <ccan/grab_file/grab_file.h> * #include <ccan/tal/grab_file/grab_file.h>
* #include <err.h> * #include <err.h>
* *
* // Dumb demo program to double-linespace a file. * // Dumb demo program to double-linespace a file.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
* char **lines; * char **lines;
* *
* // Grab lines in file. * // Grab lines in file.
* textfile = grab_file(NULL, argv[1], NULL); * textfile = grab_file(NULL, argv[1]);
* if (!textfile) * if (!textfile)
* err(1, "Failed reading %s", argv[1]); * err(1, "Failed reading %s", argv[1]);
* lines = tal_strsplit(textfile, textfile, "\n", STR_EMPTY_OK); * lines = tal_strsplit(textfile, textfile, "\n", STR_EMPTY_OK);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment