Skip to content
Snippets Groups Projects
Verified Commit 2a432611 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

fixed conflict

parents a5f41715 05ac4bd4
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,8 @@ struct fraction frac; // déclaration de frac
int32_t num, int32_t denom)
{
// f a déjà été allouée
f>num = num;
f>denom = denom;
f->num = num;
f->denom = denom;
}
int main() {
fraction_t frac; // on alloue une fraction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment