diff options
author | Cameron Grant <cg@FreeBSD.org> | 2003-09-07 16:28:03 +0000 |
---|---|---|
committer | Cameron Grant <cg@FreeBSD.org> | 2003-09-07 16:28:03 +0000 |
commit | 3f22597838c3b74ccf3bea8b2a6526aa0652c6bf (patch) | |
tree | 2ddfd6cac3434d31885b1b1a1d848ddc449d0e6b /sys/dev/sound/pcm/buffer.c | |
parent | b956c13cfe56eae3077dbb877f4ba0a850473cc4 (diff) |
update my email address.
Notes
Notes:
svn path=/head/; revision=119853
Diffstat (limited to 'sys/dev/sound/pcm/buffer.c')
-rw-r--r-- | sys/dev/sound/pcm/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/pcm/buffer.c b/sys/dev/sound/pcm/buffer.c index 30e0996cb5dc..30970abc1b49 100644 --- a/sys/dev/sound/pcm/buffer.c +++ b/sys/dev/sound/pcm/buffer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk> + * Copyright (c) 1999 Cameron Grant <cg@freebsd.org> * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -129,7 +129,7 @@ sndbuf_resize(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz) b->bufsize = blkcnt * blksz; tmpbuf = malloc(b->bufsize, M_DEVBUF, M_NOWAIT); - if (tmpbuf == NULL) + if (tmpbuf == NULL) return ENOMEM; free(b->tmpbuf, M_DEVBUF); b->tmpbuf = tmpbuf; |