change almost all uses: s/IS_DEVICE/RESOLVE_DEVICE/

Use this command:
  git grep -l -w IS_DEVICE|xargs perl -pi -e \
    's/\b(?:IS_DEVICE)\b( \(.*?,) (.*?)\)/RESOLVE_DEVICE$1 return $2)/'
This commit is contained in:
Jim Meyering
2009-08-10 18:51:32 +02:00
parent 966dbd977f
commit 1997858e90
15 changed files with 32 additions and 32 deletions

View File

@@ -33,7 +33,7 @@ do_ntfs_3g_probe (int rw, char *device)
int r;
const char *rw_flag;
IS_DEVICE (device, -1);
RESOLVE_DEVICE (device, return -1);
rw_flag = rw ? "-w" : "-r";