- Replace 'if(' with 'if ('.
[fw/openocd] / src / helper / fileio.c
index 735c5760154c09ccd4099872527cd399da598859..e40e019a1e190f490287df3f2a3c81fe0f315e1f 100644 (file)
@@ -182,7 +182,7 @@ int fileio_read_u32(fileio_t *fileio, uint32_t *data)
 
 static inline int fileio_local_fgets(fileio_t *fileio, uint32_t size, char *buffer)
 {
-       if( fgets(buffer, size, fileio->file) == NULL)
+       if ( fgets(buffer, size, fileio->file) == NULL)
                return ERROR_FILEIO_OPERATION_FAILED;
        
        return ERROR_OK;