What on earth are you doing? RENAME_FILE_TO is an array you have defined at the top. You are basically doing:
char array1[ BUFSIZ ];
char array2[] = "hello" array1;


Quzah.