From d4ffa2429e43a106e18b25bc2f7dca1d9830e10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Sun, 1 Nov 2015 22:06:44 +0100 Subject: [PATCH] Fix indentation --- cue2pops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cue2pops.c b/cue2pops.c index 30c929c..13815ea 100644 --- a/cue2pops.c +++ b/cue2pops.c @@ -510,7 +510,7 @@ int main(int argc, char **argv) } for(i = strlen(cue_ptr); i > 0; i--) { // Does the cue have the full BINARY path ? - if((cue_ptr[i] == '\\') || (cue_ptr[i] == '/')) { // YES ! + if((cue_ptr[i] == '\\') || (cue_ptr[i] == '/')) { // YES ! strcpy(bin_path, cue_ptr); break; }