Skip to content

Commit

Permalink
minor typo fixes in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Jun 5, 2014
1 parent 5086e44 commit d008350
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
/*
_WM_Lock(wmlock)
wm_lock = a pointer to a value
wmlock = a pointer to a value
returns nothing
Attemptes to set a lock on the MDI tree so that
Attempts to set a lock on the MDI tree so that
only 1 library command may access it at any time.
If lock fails the process retries untill successful.
If lock fails the process retries until successful.
*/
void _WM_Lock(int * wmlock) {
LOCK_START:
Expand All @@ -71,7 +71,7 @@ void _WM_Lock(int * wmlock) {
/*
_WM_Unlock(wmlock)
wm_lock = a pointer to a value
wmlock = a pointer to a value
returns nothing
Expand Down

9 comments on commit d008350

@psi29a
Copy link
Member

@psi29a psi29a commented on d008350 Jun 5, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I re-released 0.3.7 and re-tagged it as wildmidi-0.3.7 (as we do the rest of the tags). Also published.

@sezero
Copy link
Contributor Author

@sezero sezero commented on d008350 Jun 5, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sezero
Copy link
Contributor Author

@sezero sezero commented on d008350 Jun 5, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@psi29a
Copy link
Member

@psi29a psi29a commented on d008350 Jun 5, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rebuilding the binaries aren't necessary I believ.

I noticed that the tag wasn't right, so I fixed it and found that you had another small commit and added it in.

Was there a release on fedora and gentoo already? If so, shit, sorry! I'll keep that in mind for in the future.

@sezero
Copy link
Contributor Author

@sezero sezero commented on d008350 Jun 5, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@psi29a
Copy link
Member

@psi29a psi29a commented on d008350 Jun 5, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I do a wget https://github.com/Mindwerks/wildmidi/archive/wildmidi-0.3.7.tar.gz, then I get wildmidi-0.3.7.tar.gz (just tried). I think that is an issue with your version of wget.
wget --version
GNU Wget 1.15 built on linux-gnu

Try checking your /etc/wgetrc

@sezero
Copy link
Contributor Author

@sezero sezero commented on d008350 Jun 5, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@psi29a
Copy link
Member

@psi29a psi29a commented on d008350 Jun 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you try with --content-disposition argument?

       --content-disposition
           If this is set to on, experimental (not fully-functional) support for "Content-Disposition" headers is enabled. This
           can currently result in extra round-trips to the server for a "HEAD" request, and is known to suffer from a few bugs,
           which is why it is not currently enabled by default.

           This option is useful for some file-downloading CGI programs that use "Content-Disposition" headers to describe what
           the name of a downloaded file should be.

@psi29a
Copy link
Member

@psi29a psi29a commented on d008350 Jun 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also found this:
https://github.com/mathiasbynens/dotfiles/blob/master/.wgetrc

# Use the last component of a redirection URL for the local file name
trust_server_names = on

# Add a `.html` extension to `text/html` or `application/xhtml+xml` files that lack one, or a `.css` extension to `text/css` files that lack one
adjust_extension = on

Please sign in to comment.