res = nfs_follow_remote_path(root_mnt, export_path);
 
-       dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
-                       IS_ERR(res) ? PTR_ERR(res) : 0,
-                       IS_ERR(res) ? " [error]" : "");
+       dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n",
+                PTR_ERR_OR_ZERO(res),
+                IS_ERR(res) ? " [error]" : "");
        return res;
 }
 
        data->mnt_path = export_path;
 
        res = nfs_follow_remote_path(root_mnt, export_path);
-       dprintk("<-- nfs4_referral_mount() = %ld%s\n",
-                       IS_ERR(res) ? PTR_ERR(res) : 0,
-                       IS_ERR(res) ? " [error]" : "");
+       dprintk("<-- nfs4_referral_mount() = %d%s\n",
+               PTR_ERR_OR_ZERO(res),
+               IS_ERR(res) ? " [error]" : "");
        return res;
 }