sound/core/seq/seq_clientmgr.c: In function `snd_seq_open': sound/core/seq/seq_clientmgr.c:331: warning: use of cast expressions as lvalues is deprecated --- sound/core/seq/seq_clientmgr.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN sound/core/seq/seq_clientmgr.c~gcc-35-seq_clientmgr sound/core/seq/seq_clientmgr.c --- 25/sound/core/seq/seq_clientmgr.c~gcc-35-seq_clientmgr 2004-01-17 15:32:15.000000000 -0800 +++ 25-akpm/sound/core/seq/seq_clientmgr.c 2004-01-17 15:32:43.000000000 -0800 @@ -328,7 +328,7 @@ static int snd_seq_open(struct inode *in up(®ister_mutex); c = client->number; - (user_client_t *) file->private_data = client; + file->private_data = client; /* fill client data */ user->file = file; _