fileargs: fix formating in EXAMPLES

PR:		239523
Submitted by:	mikael.urankar@gmail.com
This commit is contained in:
Mariusz Zaborski 2019-07-30 08:53:03 +00:00
parent a2f17b9dce
commit 64b3a6b3b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350438

View File

@ -247,7 +247,7 @@ for (i = 0; i < argc; i++) {
fd = fileargs_open(fa, argv[i]);
if (fd < 0)
err(1, "unable to open file %s", argv[i]);
printf("File %s opened in capability mode\n", argv[i]);
printf("File %s opened in capability mode\en", argv[i]);
close(fd);
}