]> git.openfabrics.org - ~shefty/libibcm.git/commitdiff
libibcm: remove print on error
authorSean Hefty <sean.hefty@intel.com>
Wed, 23 Apr 2008 15:51:46 +0000 (08:51 -0700)
committerSean Hefty <sean.hefty@intel.com>
Wed, 23 Apr 2008 15:51:46 +0000 (08:51 -0700)
A request was made by Jeff Squyres of Cisco to remove the printf when
the libibcm is unable to open the ucm device.  Remove that print.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
src/cm.c

index 7370abe1492841ba6cb49fe8a09c8ce6719ec0b5..c0bcba3c5ea3d20252662a1d1bd56e1fdb9195a0 100644 (file)
--- a/src/cm.c
+++ b/src/cm.c
@@ -167,7 +167,6 @@ struct ib_cm_device* ib_cm_open_device(struct ibv_context *device_context)
 
        dev->fd = open(dev_path, O_RDWR);
        if (dev->fd < 0) {
-               fprintf(stderr, PFX "unable to open %s\n", dev_path);
                goto err;
        }