Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[PATCH]Silencing warning: passing argument 1 of 'get_new_cred' discards qualifiers from pointer target type

51 views
Skip to first unread message

Marin Mitov

unread,
Apr 9, 2009, 6:50:11 PM4/9/09
to
Hi all,

I do not know if that is worth the effort, but...

Silencing warning: passing argument 1 of 'get_new_cred' discards qualifiers from pointer target type

The proposed change is similar to that used in put_cred() function (few lines lower)

The patch is against 2.6.30-rc1, but should apply to 2.6.29(.1) too.

Signed-off-by: Marin Mitov mi...@issp.bas.bg
=============================================================
--- a/include/linux/cred.h 2009-04-05 19:59:19.000000000 +0300
+++ b/include/linux/cred.h 2009-04-05 22:49:22.000000000 +0300
@@ -185,7 +185,9 @@
*/
static inline const struct cred *get_cred(const struct cred *cred)
{
- return get_new_cred((struct cred *) cred);
+ struct cred *_cred = (struct cred *) cred;
+
+ return get_new_cred(_cred);
}

/**
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

0 new messages