mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-02-03 10:08:37 +01:00
binaries in, std=gnu99, for loop variable declaration inside for loop
This commit is contained in:
@@ -35,8 +35,7 @@ int ASIC_Driver_Set(int index, int length, char *buffer) {
|
||||
("\t[chip index: %d, length: %d, fname: %s]\n", index, length, fname));
|
||||
{
|
||||
LOG(logDEBUG2, ("\t[values: \n"));
|
||||
int i;
|
||||
for (i = 0; i < length; ++i) {
|
||||
for (int i = 0; i < length; ++i) {
|
||||
LOG(logDEBUG2, ("\t%d: 0x%02hhx\n", i, buffer[i]));
|
||||
}
|
||||
LOG(logDEBUG2, ("\t]\n"));
|
||||
|
||||
Reference in New Issue
Block a user