Skip to content

Commit

Permalink
Tiny typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
CuppoJava committed Aug 20, 2024
1 parent 7a654d0 commit b81e307
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/params.stanza
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public defn compiler-flags () :
to-tuple(COMPILE-FLAGS)

;========= Stanza Configuration ========
public val STANZA-VERSION = [0 18 93]
public val STANZA-VERSION = [0 18 94]
public var STANZA-INSTALL-DIR:String = ""
public var OUTPUT-PLATFORM:Symbol = `platform
public var STANZA-PKG-DIRS:List<String> = List()
Expand Down
2 changes: 1 addition & 1 deletion core/core.stanza
Original file line number Diff line number Diff line change
Expand Up @@ -5750,7 +5750,7 @@ public defn FileDeletionError (path:String, msg:String) :
;============================================================

public lostanza defn chmod (path:ref<String>, value:ref<Int>) -> ref<False> :
val r = call-c clib/chmod(addr!(path.chars), 0o777)
val r = call-c clib/chmod(addr!(path.chars), value.value)
if r == -1 : throw(ChangePermissionsError(path, linux-error-msg()))
return false

Expand Down

0 comments on commit b81e307

Please sign in to comment.