aboutsummaryrefslogtreecommitdiffstats
path: root/btt/latency.c
diff options
context:
space:
mode:
Diffstat (limited to 'btt/latency.c')
-rw-r--r--btt/latency.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/btt/latency.c b/btt/latency.c
index 0c6e55d..d12f60c 100644
--- a/btt/latency.c
+++ b/btt/latency.c
@@ -41,7 +41,7 @@ FILE *latency_open(__u32 device, char *name, char *post)
oname = malloc(strlen(name)+32);
sprintf(oname, "%s_%03d,%03d_%s.dat", name, mjr, mnr, post);
- if ((fp = fopen(oname, "w")) == NULL)
+ if ((fp = my_fopen(oname, "w")) == NULL)
perror(oname);
else
add_file(&all_files, fp, oname);