diff options
| author | Yannick Verschueren <unknown@unknown> | 2004-02-13 09:38:52 +0000 |
|---|---|---|
| committer | Yannick Verschueren <unknown@unknown> | 2004-02-13 09:38:52 +0000 |
| commit | 4be829988a6423a4ca9582e0ec6948837b529a1b (patch) | |
| tree | 05f5173c5c91dd3cdad38308083c7e0464c8cc1c /libopenjpeg/fix.c | |
| parent | 28283c60ea2188fdf560aeab34835c5fef06599c (diff) | |
Update for version 0.8
Diffstat (limited to 'libopenjpeg/fix.c')
| -rw-r--r-- | libopenjpeg/fix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libopenjpeg/fix.c b/libopenjpeg/fix.c index 6a8a64b4..55dc01bd 100644 --- a/libopenjpeg/fix.c +++ b/libopenjpeg/fix.c @@ -32,9 +32,9 @@ #define int64 long long #endif -/* <summary> */ -/* Multiply two fixed-precision rational numbers. */ -/* </summary> */ +/* + * Multiply two fixed-precision rational numbers. + */ int fix_mul(int a, int b) { return (int) ((int64) a * (int64) b >> 13); |
