Skip to content

Commit d2e6ed7

Browse files
committed
moved loop variable declaration to comply with c mode in travis
Signed-off-by: Avi Vaid <[email protected]>
1 parent 9557dc3 commit d2e6ed7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

secretservice/secretservice_linux.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ GError *list(char *** paths, char *** accts, unsigned int *list_l) {
140140
}
141141

142142
void freeListData(char *** data, unsigned int length) {
143-
for(int i=0; i<length; i++) {
143+
int i;
144+
for(i=0; i<length; i++) {
144145
free((*data)[i]);
145146
}
146147
free(*data);

0 commit comments

Comments
 (0)