summaryrefslogtreecommitdiff
path: root/send-utils.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-06-30 15:05:07 +0200
committerDavid Sterba <dsterba@suse.cz>2015-06-30 15:05:07 +0200
commit1b1fd2c190ddb896a010a4c704ec1c2d46922aaf (patch)
treefc10aba93d2345495ca5424980323df341082575 /send-utils.c
parentdf0bb2f1d20490d8625ff1b6bafe9bc5c556b4a6 (diff)
downloadbtrfs-progs-1b1fd2c190ddb896a010a4c704ec1c2d46922aaf.tar.gz
btrfs-progs: drop argument from attribute deprecated
The optional argument to attribute 'deprecated' has been introduced in gcc 4.5, and does not build on 4.4 which is still in use. The recommended replacements are mentioned in the comment, not absolutely necessary to repeat it via the attribute. Reported-by: Amr El-Sharnoby <amr.elsharnoby@horizontechs.com> Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'send-utils.c')
-rw-r--r--send-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/send-utils.c b/send-utils.c
index fa09bb4..51f3d7b 100644
--- a/send-utils.c
+++ b/send-utils.c
@@ -727,7 +727,7 @@ int path_cat_out(char *out, const char *p1, const char *p2)
return 0;
}
-__attribute__((deprecated("please use path_cat_out")))
+__attribute__((deprecated))
char *path_cat(const char *p1, const char *p2)
{
int p1_len = strlen(p1);
@@ -759,7 +759,7 @@ int path_cat3_out(char *out, const char *p1, const char *p2, const char *p3)
return 0;
}
-__attribute__((deprecated("please use path_cat3_out")))
+__attribute__((deprecated))
char *path_cat3(const char *p1, const char *p2, const char *p3)
{
int p1_len = strlen(p1);