Skip to content
Extraits de code Groupes Projets
Valider 34450438 rédigé par Etienne BRATEAU's avatar Etienne BRATEAU
Parcourir les fichiers

Clean page

parent f07ca42e
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -7,7 +7,6 @@ typedef struct log_regrec { ...@@ -7,7 +7,6 @@ typedef struct log_regrec {
long regstamp; long regstamp;
na_long info; na_long info;
struct log_regrec *next; struct log_regrec *next;
int f7, f6, f5, f4, f3, f2, f1, f0;
} log_regrec; /* Sensitive region */ } log_regrec; /* Sensitive region */
void chpage(short pg); void chpage(short pg);
......
...@@ -7,15 +7,15 @@ ...@@ -7,15 +7,15 @@
void chpage(short pg) void chpage(short pg)
{ {
log_regrec *r; log_regrec *region;
stamp(&gg.pagestamp[pg - 1]); stamp(&gg.pagestamp[pg - 1]);
gg.pagechanged[pg - 1] = true; gg.pagechanged[pg - 1] = true;
r = gg.pageregions[pg - 1]; region = gg.pageregions[pg - 1];
while (r != NULL) while (region != NULL)
{ {
stamp(&r->regstamp); stamp(&region->regstamp);
r = r->next; region = region->next;
} }
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter