Explorar el Código

[Minor] Oops, fix logic

tags/1.9.2
Vsevolod Stakhov hace 5 años
padre
commit
941d2b26d2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      contrib/fpconv/fpconv.c

+ 1
- 1
contrib/fpconv/fpconv.c Ver fichero

@@ -220,7 +220,7 @@ static int emit_digits(char* digits, int ndigits, char* dest, int K, bool neg,
}

/* write decimal w/o scientific notation */
if(scientific && (K < 0 && (K > -7 || exp < 4))) {
if(!scientific || (K < 0 && (K > -7 || exp < 4))) {
int offset = ndigits - absv(K);
/* fp < 1.0 -> write leading zero */
if(offset <= 0) {

Cargando…
Cancelar
Guardar