diff options
author | Vijay Bellur <vijay@gluster.com> | 2010-10-12 03:06:30 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-10-12 02:39:01 -0700 |
commit | 9bad9d59f0f19fe20f90c6ed80e25c7db08b3371 (patch) | |
tree | 05dc2622a1ab6e00930f3846bd79cf560e8a939e /libglusterfs/src/fd.c | |
parent | f637330995eab92a1d0b9f4ad9c43acfaad35037 (diff) |
Change assert to GF_ASSERT
Signed-off-by: Vijay Bellur <vijay@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 971 (dynamic volume management)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971
Diffstat (limited to 'libglusterfs/src/fd.c')
-rw-r--r-- | libglusterfs/src/fd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/fd.c b/libglusterfs/src/fd.c index 58790f4e69b..e4e75d8040f 100644 --- a/libglusterfs/src/fd.c +++ b/libglusterfs/src/fd.c @@ -384,7 +384,7 @@ fd_ref (fd_t *fd) fd_t * _fd_unref (fd_t *fd) { - assert (fd->refcount); + GF_ASSERT (fd->refcount); --fd->refcount; @@ -503,7 +503,7 @@ fd_bind (fd_t *fd) void fd_unref_unbind (fd_t *fd) { - assert (fd->refcount); + GF_ASSERT (fd->refcount); LOCK (&fd->inode->lock); { @@ -514,7 +514,7 @@ fd_unref_unbind (fd_t *fd) * Make sure you only call this when you know there are * pending refs on the fd. */ - assert (fd->refcount); + GF_ASSERT (fd->refcount); list_del_init (&fd->inode_list); } UNLOCK (&fd->inode->lock); |