summaryrefslogtreecommitdiff
path: root/probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'probe.c')
-rw-r--r--probe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/probe.c b/probe.c
index 7d0e831..3ed7a7d 100644
--- a/probe.c
+++ b/probe.c
@@ -24,7 +24,7 @@ probe_path_tiny(const char *path)
struct blkid_struct_probe *pr;
char *type, *dev, *uuid, *label, *version;
- pr = blkid_new_probe();
+ pr = blkidtiny_new_probe();
if (!pr)
return NULL;
@@ -53,7 +53,7 @@ probe_path_tiny(const char *path)
}
}
- blkid_free_probe(pr);
+ blkidtiny_free_probe(pr);
return info;
}