From c0617e78a0e0b308b9bb6f275b0dc5a32031eb2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Sun, 1 Nov 2015 13:39:35 +0100 Subject: [PATCH] Remove superfluous comment --- cue2pops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cue2pops.c b/cue2pops.c index a23395e..ead016f 100644 --- a/cue2pops.c +++ b/cue2pops.c @@ -223,7 +223,7 @@ int GetFileSize(char *file_name) return -1; } - size = ftell(file_handle); // Get it's size + size = ftell(file_handle); if (size == -1L) { printf("Error: Failed to get file %s size\n", file_name); return -1;