Skip to content

Commit

Permalink
fix variable name in case of unknown NAN
Browse files Browse the repository at this point in the history
  • Loading branch information
H.Merijn Brand committed Jul 6, 2015
1 parent d1f2894 commit 18b0188
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Configure
Expand Up @@ -10251,9 +10251,9 @@ else
longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
;;
*) # No idea.
longdblinfbytes=$undef
longdlnan=$undef
*) # No idea.
longdblinfbytes=$undef
longdblnanbytes=$undef
;;
esac
;;
Expand All @@ -10267,9 +10267,9 @@ else
longdblinfbytes='0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
longdblnanbytes='0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
;;
*) # No idea.
longdblinfbytes=$undef
longdlnan=$undef
*) # No idea.
longdblinfbytes=$undef
longdblnanbytes=$undef
;;
esac
;;
Expand All @@ -10283,7 +10283,7 @@ else
;;
*) # No idea.
longdblinfbytes=$undef
longdlnan=$undef
longdblnanbytes=$undef
;;
esac
fi
Expand Down

0 comments on commit 18b0188

Please sign in to comment.