瀏覽代碼

[Minor] Oops, fix logic

tags/1.9.2
Vsevolod Stakhov 5 年之前
父節點
當前提交
941d2b26d2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      contrib/fpconv/fpconv.c

+ 1
- 1
contrib/fpconv/fpconv.c 查看文件

@@ -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) {

Loading…
取消
儲存