fio: fix aio trim completion latencies
[fio.git] / exp / test-expression-parser.c
index 93c766a1e61dadde4267fcf5ca98acfc8edddc02..e22f24dc878d14f03482d7370da7568fb302d259 100644 (file)
@@ -15,7 +15,7 @@
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
  */
 
@@ -25,7 +25,7 @@
 #include "../y.tab.h"
 
 extern int evaluate_arithmetic_expression(const char *buffer, long long *ival,
-                                         double *dval, double implied_units);
+                                         double *dval, double implied_units, int is_time);
  
 int main(int argc, char *argv[])
 {
@@ -40,7 +40,7 @@ int main(int argc, char *argv[])
                rc = strlen(buffer);
                if (rc > 0 && buffer[rc - 1] == '\n')
                        buffer[rc - 1] = '\0';
-               rc = evaluate_arithmetic_expression(buffer, &result, &dresult, 1.0);
+               rc = evaluate_arithmetic_expression(buffer, &result, &dresult, 1.0, 0);
                if (!rc) {
                        printf("%lld (%20.20lf)\n", result, dresult);
                } else {