| Submitter | Jan Kara |
|---|---|
| Date | Feb. 25, 2013, 3:55 p.m. |
| Message ID | <1361807708-15871-4-git-send-email-jack@suse.cz> |
| Download | mbox | patch |
| Permalink | /patch/222945/ |
| State | Accepted |
| Headers | show |
Comments
On Mon, Feb 25, 2013 at 05:55:07AM -0000, Jan Kara wrote: > New function ext2fs_symlink() doesn't have a prototype in ext2fs.h and > thus debugfs compilation gives warning: > > debugfs.c:2219:2: warning: implicit declaration of function 'ext2fs_symlink' > > Signed-off-by: Jan Kara <jack@suse.cz> Thanks, applied. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index 7139b4d..cd59473 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -1449,6 +1449,10 @@ errcode_t ext2fs_link(ext2_filsys fs, ext2_ino_t dir, const char *name, errcode_t ext2fs_unlink(ext2_filsys fs, ext2_ino_t dir, const char *name, ext2_ino_t ino, int flags); +/* symlink.c */ +errcode_t ext2fs_symlink(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t ino, + const char *name, char *target); + /* mmp.c */ errcode_t ext2fs_mmp_read(ext2_filsys fs, blk64_t mmp_blk, void *buf); errcode_t ext2fs_mmp_write(ext2_filsys fs, blk64_t mmp_blk, void *buf);
New function ext2fs_symlink() doesn't have a prototype in ext2fs.h and thus debugfs compilation gives warning: debugfs.c:2219:2: warning: implicit declaration of function 'ext2fs_symlink' Signed-off-by: Jan Kara <jack@suse.cz> --- lib/ext2fs/ext2fs.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)