FEATURES: (no log message)
[paraslash.git] / playlist_selector.c
index f5241d694233c2f852846ba7e439a01727a48beb..86cae7b089b5cf8c675f75a59038ce59db84f0b6 100644 (file)
@@ -65,7 +65,7 @@ static int com_ppl(int, int, char **);
 static int com_lpl(int, int, char **);
 extern struct misc_meta_data *mmd;
 
-/* array of commands that are supported by this database tool */
+/* array of supported commands */
 static struct server_command cmds[] = {
 {
 .name = "ppl",
@@ -105,7 +105,7 @@ static int send_playlist_to_server(const char *buf, size_t size)
        int ret, shm_mutex = -1, shm_id = -1;
        void *shm = NULL;
 
-       PARA_DEBUG_LOG("new playlist (%d bytes)\n", size);
+       PARA_DEBUG_LOG("new playlist (%zd bytes)\n", size);
 
        ret = mutex_new();
        if (ret < 0)
@@ -247,7 +247,7 @@ static void pls_post_select(__unused fd_set *rfds, __unused fd_set *wfds)
                PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
                goto out;
        }
-       PARA_DEBUG_LOG("loading new playlist (%d bytes)\n", pcd->size);
+       PARA_DEBUG_LOG("loading new playlist (%zd bytes)\n", pcd->size);
        ret = for_each_line((char *)shm, pcd->size, &playlist_add);
        shm_detach(shm);
        PARA_NOTICE_LOG("new playlist (%d entries)\n", playlist_len);
@@ -275,7 +275,7 @@ void pls_update_audio_file(char *audio_file)
  *
  * Init all function pointers of \a db
  *
- * \sa struct audio_file_selector, misc_meta_data::dbinfo, mysql.c
+ * \sa struct audio_file_selector, misc_meta_data::selector_info, mysql.c
  * random_selector.c.
  */
 int playlist_selector_init(struct audio_file_selector *db)
@@ -318,7 +318,7 @@ int playlist_selector_init(struct audio_file_selector *db)
                goto err_out;
        ppd->client_data = shm;
        ppd->client_data->size = 0;
-       sprintf(mmd->dbinfo, "playlist selector initialized");
+       sprintf(mmd->selector_info, "playlist selector initialized");
        return 1;
 err_out:
        if (ppd->client_data_shm_id >= 0)