summaryrefslogtreecommitdiff
path: root/mpq
diff options
context:
space:
mode:
Diffstat (limited to 'mpq')
-rw-r--r--mpq/set_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpq/set_ui.c b/mpq/set_ui.c
index d977fed84..ed01a1bc3 100644
--- a/mpq/set_ui.c
+++ b/mpq/set_ui.c
@@ -45,7 +45,7 @@ mpq_set_ui (mpq_t dest, unsigned long int num, unsigned long int den)
if (num == 0)
{
- /* Canonicalize 0/n to 0/1. */
+ /* Canonicalize 0/d to 0/1. */
den = 1;
SIZ(NUM(dest)) = 0;
}