Commit 3c73b554 by Serge Hallyn

remove leftover debug cruft (thanks, Dwight)

parent a7478944
...@@ -964,11 +964,6 @@ static int btrfs_subvolume_create(const char *path) ...@@ -964,11 +964,6 @@ static int btrfs_subvolume_create(const char *path)
args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0; args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
ret = ioctl(fd, BTRFS_IOC_SUBVOL_CREATE, &args); ret = ioctl(fd, BTRFS_IOC_SUBVOL_CREATE, &args);
INFO("btrfs: snapshot create ioctl returned %d", ret); INFO("btrfs: snapshot create ioctl returned %d", ret);
{
FILE *f = fopen("/tmp/a", "a");
fprintf(f, "ioctl returned %d\n", ret);
fclose(f);
}
free(newfull); free(newfull);
close(fd); close(fd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment