1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-18 20:34:39 +01:00

Add missing include for symlink()

This commit is contained in:
John Maguire 2014-02-06 19:46:08 +01:00
parent 3df3a5b645
commit 7671108aa8

View File

@ -15,8 +15,9 @@
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "spotifyblobdownloader.h"
#include "config.h"
#include "spotifyservice.h"
#include "core/logging.h"
#include "core/network.h"
@ -32,6 +33,10 @@
#include <QtCrypto>
#endif // HAVE_QCA
#ifdef Q_OS_UNIX
#include <unistd.h>
#endif
const char* SpotifyBlobDownloader::kSignatureSuffix = ".sha1";