summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/nvfragparse.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-02-08 15:56:34 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-02-08 15:56:34 +0000
commit92d79350743d6f8d52bf78f866d9ffe69da70d02 (patch)
tree0dd020d4d83ced76000d7d65369ed7ad7bd82cc2 /src/mesa/main/nvfragparse.c
parentb8e3eb95d079aaec8b1c4c5a7e67c612af0848f6 (diff)
downloadexternal_mesa3d-92d79350743d6f8d52bf78f866d9ffe69da70d02.zip
external_mesa3d-92d79350743d6f8d52bf78f866d9ffe69da70d02.tar.gz
external_mesa3d-92d79350743d6f8d52bf78f866d9ffe69da70d02.tar.bz2
replace _mesa_strtof() with _mesa_strtod()
Diffstat (limited to 'src/mesa/main/nvfragparse.c')
-rw-r--r--src/mesa/main/nvfragparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/nvfragparse.c b/src/mesa/main/nvfragparse.c
index 641afa4..05d0ac5 100644
--- a/src/mesa/main/nvfragparse.c
+++ b/src/mesa/main/nvfragparse.c
@@ -1,10 +1,10 @@
-/* $Id: nvfragparse.c,v 1.2 2003/01/19 15:27:37 brianp Exp $ */
+/* $Id: nvfragparse.c,v 1.3 2003/02/08 15:56:34 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 5.1
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -484,7 +484,7 @@ Parse_ScalarConstant(const char **s, GLfloat *number)
{
char *end;
- *number = _mesa_strtof(*s, &end);
+ *number = (GLfloat) _mesa_strtod(*s, &end);
if (end && end > *s) {
/* got a number */